blob: 42db836902a50b01ca27c18065176c05bdda1ed8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
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 title={title} description={description}>
<WelcomeSection />
<SocialLinksSection />
<LatestPostsSection />
</Layout>
|