Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
Fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv committed Aug 3, 2023
1 parent b740a10 commit 23d37a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { title } = Astro.props;
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
<title>grammY tools{title ? `| ${title}` : ''}</title>
</head>
<body class="bg-background text-foreground h-screen">
<Header title={title} />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Layout from "../layouts/Layout.astro";
---

<Layout title="grammY tools">
<Layout>
<main class="mx-auto flex w-full max-w-[calc(640px+2rem)] flex-col">
{[
["/update-explorer", "Update Explorer"],
Expand Down

0 comments on commit 23d37a8

Please sign in to comment.