2025-06-10 14:01:27 +00:00
---
import Layout from "../layouts/BaseLayout.astro";
2025-06-11 16:47:48 +00:00
import LatestPostsSection from "../components/Sections/LatestPosts.astro";
2025-06-11 16:34:34 +00:00
import SocialLinksSection from "../components/Sections/SocialLinks.astro";
import WelcomeSection from "../components/Sections/Welcome.astro";
2025-06-11 23:20:36 +00:00
import websiteSchema from "../utils/schemas/websiteSchema";
2025-06-11 17:20:43 +00:00
2025-06-11 17:49:14 +00:00
const title = "Valentin Popov – Software Developer & Team Lead | Tech Insights";
2025-06-11 23:20:36 +00:00
const description = "Blog by Valentin Popov — software developer and team lead writing about code, side projects, digital tools, and fun experiments.";
2025-06-11 17:49:14 +00:00
const lang = "en";
2025-06-11 23:20:36 +00:00
const schema = websiteSchema({
siteUrl: new URL("/", Astro.site).toString(),
title,
2025-06-14 11:25:17 +00:00
description,
2025-06-11 23:20:36 +00:00
});
2025-06-10 14:01:27 +00:00
---
2025-06-11 23:20:36 +00:00
<Layout title={title} description={description} lang={lang} schema={schema}>
2025-06-11 16:34:34 +00:00
<WelcomeSection />
<SocialLinksSection />
2025-06-11 16:47:48 +00:00
<LatestPostsSection />
2025-06-10 14:01:27 +00:00
</Layout>