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 17:20:43 +00:00
|
|
|
|
|
|
|
const title = "Valentin Popov";
|
|
|
|
const description = "A personal website of Valentin Popov, a software developer and team lead.";
|
2025-06-10 14:01:27 +00:00
|
|
|
---
|
|
|
|
|
2025-06-11 17:20:43 +00:00
|
|
|
<Layout title={title} description={description}>
|
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>
|