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