diff options
author | Valentin Popov <valentin@popov.link> | 2025-06-11 19:47:48 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-06-11 19:47:48 +0300 |
commit | 78a9c2abc56d47637eaa46eb1ce99b682d7bde0d (patch) | |
tree | 94001d8c984a70f1138f6240da61cf8aa27d20ec /src/pages/index.astro | |
parent | 604e507b311171f0f5d914ce28a3d42a2281a5e6 (diff) | |
download | popov.link-78a9c2abc56d47637eaa46eb1ce99b682d7bde0d.tar.xz popov.link-78a9c2abc56d47637eaa46eb1ce99b682d7bde0d.zip |
feat: add LatestPosts section to homepage
- Introduced a new LatestPosts component to display the five most recent blog posts.
- Updated the index page to include the LatestPosts section, enhancing content visibility.
- Made minor text adjustments in the Welcome section for clarity.
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r-- | src/pages/index.astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 87bd89c..e7ae23d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,5 +1,6 @@ --- 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"; --- @@ -7,4 +8,5 @@ import WelcomeSection from "../components/Sections/Welcome.astro"; <Layout> <WelcomeSection /> <SocialLinksSection /> + <LatestPostsSection /> </Layout> |