diff options
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r-- | src/pages/index.astro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index e7ae23d..42db836 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,9 +3,12 @@ import Layout from "../layouts/BaseLayout.astro"; import LatestPostsSection from "../components/Sections/LatestPosts.astro"; import SocialLinksSection from "../components/Sections/SocialLinks.astro"; import WelcomeSection from "../components/Sections/Welcome.astro"; + +const title = "Valentin Popov"; +const description = "A personal website of Valentin Popov, a software developer and team lead."; --- -<Layout> +<Layout title={title} description={description}> <WelcomeSection /> <SocialLinksSection /> <LatestPostsSection /> |