Skip to content

Commit

Permalink
docs: update website again
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed Aug 17, 2023
1 parent 5788a6d commit cfef948
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion website/src/components/generated/NumberOfRules.astro

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions website/src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ const description = frontmatter.description ?? props.description ?? "";
let title = props.title ?? frontmatter.title ?? "";
title = title.trim();
if (!title.includes("Rome")) {
if (!title.includes("Biome")) {
if (title !== "") {
title += " \u2014 ";
}
title += "Rome";
title += "Biome";
}
function encodeSVG(buffer: string) {
Expand Down
2 changes: 1 addition & 1 deletion website/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const copyrightYear = new Date().getFullYear();
<div class="container footer-inner">
<h1 id="footer" class="sr-only">Footer</h1>

<p>&copy; {copyrightYear} Rome Tools. All rights reserved.</p>
<p>&copy; {copyrightYear} Biomejs. All rights reserved.</p>
</div>
</footer>
</BaseLayout>
2 changes: 1 addition & 1 deletion website/src/pages/playground.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import BaseLayout from "@src/layouts/BaseLayout.astro";
import "@src/styles/playground/index.scss";
---

<BaseLayout title="Rome Playground" bodyClass="playground-body">
<BaseLayout title="Biome Playground" bodyClass="playground-body">
<div id="root"></div>

<script>
Expand Down

0 comments on commit cfef948

Please sign in to comment.