Skip to content

Commit

Permalink
chore: update page title
Browse files Browse the repository at this point in the history
  • Loading branch information
cvgellhorn committed Sep 17, 2024
1 parent 5adc810 commit abd1d95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
import { SITE } from "../consts";
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro";
Expand All @@ -10,7 +9,7 @@ const { title, description } = Astro.props;
<!doctype html>
<html lang="en">
<head>
<Head title={`${title} | ${SITE.TITLE}`} description={description} />
<Head title={title} description={description} />
</head>
<body>
<Header />
Expand Down

0 comments on commit abd1d95

Please sign in to comment.