Switch to version 3: modified src/app/blog/page.tsx

This commit is contained in:
2026-02-25 16:30:57 +00:00
parent 5c70aea12a
commit 2c394b066d

View File

@@ -30,18 +30,20 @@ export default function BlogPage() {
headingFontWeight="light" headingFontWeight="light"
> >
<ReactLenis root> <ReactLenis root>
<NavbarStyleFullscreen <div id="nav" data-section="nav">
navItems={[ <NavbarStyleFullscreen
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/#about" }, { name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }, { name: "About", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }, { name: "Testimonials", id: "/#testimonials" },
]} { name: "Contact", id: "/#contact" },
brandName="Angola" ]}
bottomLeftText="Experience the Beauty" brandName="Angola"
bottomRightText="hello@angola.com" bottomLeftText="Experience the Beauty"
/> bottomRightText="hello@angola.com"
/>
</div>
<main> <main>
{isLoading ? ( {isLoading ? (
@@ -61,34 +63,35 @@ export default function BlogPage() {
)} )}
</main> </main>
<FooterMedia <div id="footer" data-section="footer">
imageSrc="http://img.b2bpic.net/free-photo/beautiful-decoration-cute-little-dried-colorful-flowers-wallpaper_343596-3238.jpg?_wi=2" <FooterMedia
imageAlt="Soft, blurred pastel flowers in a tranquil setting" imageSrc="http://img.b2bpic.net/free-photo/beautiful-decoration-cute-little-dried-colorful-flowers-wallpaper_343596-3238.jpg?_wi=2"
columns={[ imageAlt="Soft, blurred pastel flowers in a tranquil setting"
{ columns={[
title: "Shop", items: [ {
{ label: "Bouquets", href: "/shop" }, title: "Shop", items: [
{ label: "Arrangements", href: "/shop" }, { label: "Bouquets", href: "/shop" },
{ label: "Custom Orders", href: "/#contact" }, { label: "Arrangements", href: "/shop" },
], { label: "Custom Orders", href: "/#contact" },
}, ],
{ },
title: "Company", items: [ {
{ label: "About Us", href: "/#about" }, title: "Company", items: [
{ label: "FAQ", href: "/#faq" }, { label: "About Us", href: "/#about" },
{ label: "Contact", href: "/#contact" }, { label: "Contact", href: "/#contact" },
], ],
}, },
{ {
title: "Connect", items: [ title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com/angola_flowers" }, { label: "Instagram", href: "https://instagram.com/angola_flowers" },
{ label: "Facebook", href: "https://facebook.com/angola_flowers" }, { label: "Facebook", href: "https://facebook.com/angola_flowers" },
], ],
}, },
]} ]}
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>
); );