mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-03 16:10:26 +03:00
- Replaced `pubDate` with `datePublished` in blog post components for consistency. - Updated sorting logic in blog sections to use `datePublished`. - Enhanced blog post schema to include `dateModified` for better structured data representation. - Adjusted various blog markdown files to reflect the new date fields.
24 lines
853 B
Plaintext
24 lines
853 B
Plaintext
---
|
||
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";
|
||
import websiteSchema from "../utils/schemas/websiteSchema";
|
||
|
||
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 lang = "en";
|
||
|
||
const schema = websiteSchema({
|
||
siteUrl: new URL("/", Astro.site).toString(),
|
||
title,
|
||
description,
|
||
});
|
||
---
|
||
|
||
<Layout title={title} description={description} lang={lang} schema={schema}>
|
||
<WelcomeSection />
|
||
<SocialLinksSection />
|
||
<LatestPostsSection />
|
||
</Layout>
|