0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 00:20:26 +03:00
Files
popov.link/src/pages/index.astro

13 lines
363 B
Plaintext
Raw Normal View History

---
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";
---
<Layout>
<WelcomeSection />
<SocialLinksSection />
<LatestPostsSection />
</Layout>