Update src/app/page.tsx

This commit is contained in:
2026-04-18 22:26:08 +00:00
parent 2c3f201d07
commit b2eef003c9

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Artists", id: "#about" },
{ name: "Gallery", id: "#gallery" },
{ name: "Services", id: "#services" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" }
]}
brandName="Artful Things Niceville"
@@ -161,13 +162,15 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterBaseReveal
logoText="Artful Things Niceville"
columns={[
{ title: "Gallery", items: [{ label: "About Us", href: "#about" }, { label: "Artists", href: "#" }, { label: "Calendar", href: "#" }] },
{ title: "Services", items: [{ label: "Custom Framing", href: "#services" }, { label: "Art Supplies", href: "#services" }, { label: "Classes", href: "#" }] },
{ title: "Contact Us", items: [{ label: "123 Art St, Niceville, FL", href: "#" }, { label: "(850) 555-0123", href: "tel:+18505550123" }, { label: "info@artfulthings.com", href: "mailto:info@artfulthings.com" }] },
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Newsletter", href: "#" }, { label: "Privacy Policy", href: "#" }] }
]}
copyrightText="© 2025 Artful Things Niceville | All Rights Reserved"
/>
</div>
</ReactLenis>