Update src/app/blog/page.tsx

This commit is contained in:
2026-02-25 16:01:59 +00:00
parent 4df2aeb8d3
commit 4c05a9a205

View File

@@ -30,6 +30,7 @@ export default function BlogPage() {
headingFontWeight="light" headingFontWeight="light"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
@@ -42,6 +43,7 @@ export default function BlogPage() {
bottomLeftText="Experience the Beauty" bottomLeftText="Experience the Beauty"
bottomRightText="hello@angola.com" bottomRightText="hello@angola.com"
/> />
</div>
<main> <main>
{isLoading ? ( {isLoading ? (
@@ -61,6 +63,7 @@ export default function BlogPage() {
)} )}
</main> </main>
<div id="footer" data-section="footer">
<FooterMedia <FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/beautiful-decoration-cute-little-dried-colorful-flowers-wallpaper_343596-3238.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/beautiful-decoration-cute-little-dried-colorful-flowers-wallpaper_343596-3238.jpg?_wi=2"
imageAlt="Soft, blurred pastel flowers in a tranquil setting" imageAlt="Soft, blurred pastel flowers in a tranquil setting"
@@ -88,6 +91,7 @@ export default function BlogPage() {
logoText="Angola" logoText="Angola"
copyrightText="© 2024 Angola Flowers Studio. All rights reserved." copyrightText="© 2024 Angola Flowers Studio. All rights reserved."
/> />
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );