diff options
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r-- | src/pages/index.astro | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 42db836..f595b94 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -4,11 +4,12 @@ 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."; +const title = "Valentin Popov – Software Developer & Team Lead | Tech Insights"; +const description = "Valentin Popov is an experienced project manager and team lead sharing expert insights on software development, leadership, and digital innovation."; +const lang = "en"; --- -<Layout title={title} description={description}> +<Layout title={title} description={description} lang={lang}> <WelcomeSection /> <SocialLinksSection /> <LatestPostsSection /> |