aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: b235b9b1027d599c40c4202c07066aa27ffe1f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
import { config } from "../config";
import LatestPostsSection from "../components/Sections/LatestPosts.astro";
import Layout from "../layouts/BaseLayout.astro";
import pageSchema from "../utils/schemas/pageSchema";
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 = "Blog by Valentin Popov — software developer and team lead writing about code, side projects, digital tools, and fun experiments.";
const preview = config.og.defaultPreview;
const lang = "en";

const schema = pageSchema({
	siteUrl: new URL("/", Astro.site).toString(),
	page: "/",
	title,
	description,
	lang,
});
---

<Layout title={title} description={description} preview={preview} lang={lang} schema={schema}>
	<WelcomeSection />
	<SocialLinksSection />
	<LatestPostsSection />
</Layout>