Skip to content

Commit

Permalink
feat: title thing and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
faultables committed Dec 25, 2024
1 parent 92f1790 commit 112f474
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog/src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const { title = SiteTitle, name = SiteTitle, description = SiteDescription, ...s
---

<meta charset="utf-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<SEO {title} {description} {name} {...seo} />
<meta name="apple-itunes-app" content="app-id=6529533140">

<ClientRouter />
1 change: 1 addition & 0 deletions changelog/src/layouts/IndexLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const { ...head } = Astro.props;
<html lang="en">
<head>
<BaseHead {...head} />
<title>flo • changelog</title>
</head>
<body>
<Header />
Expand Down
1 change: 1 addition & 0 deletions changelog/src/layouts/PostLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const { release } = Astro.props;
description={release.data.description}
image={release.data.image}
/>
<title>flo • changelog {release.data.versionNumber}</title>
</head><body>
<Header />
<div class="post single" transition:persist transition:name="post">
Expand Down
2 changes: 1 addition & 1 deletion changelog/src/styles/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ a:visited {
}

&:hover {
color: colors.color(purple, 100);
opacity: 0.6;
}
}

Expand Down

0 comments on commit 112f474

Please sign in to comment.