1 Commits

Author SHA1 Message Date
7d03744ea4 Update src/app/page.tsx 2026-02-25 02:41:43 +00:00

View File

@@ -8,6 +8,7 @@ import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Award, BarChart, BarChart3, Calendar, CheckCircle, DollarSign, Handshake, MessageCircle, Palette, Smile, Sparkles, Target, TrendingUp, Users } from 'lucide-react';
export default function LandingPage() {
@@ -205,6 +206,39 @@ export default function LandingPage() {
/>
</div>
<div id="footer-section" data-section="footer-section">
<FooterBase
columns={[
{
title: "Services", items: [
{ label: "Digital Strategy", href: "#hero-section" },
{ label: "Brand Identity", href: "#about-section" },
{ label: "Content Marketing", href: "#features-section" },
{ label: "Performance Analytics", href: "#metrics-section" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about-section" },
{ label: "Our Process", href: "#features-section" },
{ label: "Case Studies", href: "#testimonials-section" },
{ label: "Careers", href: "#contact-section" }
]
},
{
title: "Resources", items: [
{ label: "Blog", href: "#hero-section" },
{ label: "Marketing Guides", href: "#features-section" },
{ label: "Webinars", href: "#testimonials-section" },
{ label: "Support Center", href: "#contact-section" }
]
}
]}
logoText="North Star Marketing Lab "
copyrightText="© 2025 | North Star Marketing Lab - Strategic Marketing Solutions"
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>
);
}