2025-06-10 14:01:27 +00:00
---
2025-06-14 19:25:16 +00:00
import { config } from "../config";
2025-06-11 16:47:48 +00:00
import LatestPostsSection from "../components/Sections/LatestPosts.astro";
2025-06-14 19:25:16 +00:00
import Layout from "../layouts/BaseLayout.astro";
import pageSchema from "../utils/schemas/pageSchema";
2026-04-22 16:11:58 +00:00
import personSchema from "../utils/schemas/personSchema";
2025-06-11 16:34:34 +00:00
import SocialLinksSection from "../components/Sections/SocialLinks.astro";
import WelcomeSection from "../components/Sections/Welcome.astro";
2026-04-22 16:11:58 +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-14 19:25:16 +00:00
const preview = config.og.defaultPreview;
2025-06-11 17:49:14 +00:00
const lang = "en";
2025-06-11 23:20:36 +00:00
2026-04-22 16:11:58 +00:00
const siteUrl = new URL("/", Astro.site).toString();
const schema = [websiteSchema({ siteUrl, name: config.og.website, description, lang }), personSchema({ siteUrl }), pageSchema({ siteUrl, page: "/", title, description, lang, type: "ProfilePage" })];
2025-06-10 14:01:27 +00:00
---
2025-06-14 19:25:16 +00:00
<Layout title={title} description={description} preview={preview} 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>