4 Commits

Author SHA1 Message Date
962a2358ce Update src/app/page.tsx 2026-03-20 05:24:20 +00:00
cd6d0ff986 Merge version_1 into main
Merge version_1 into main
2026-03-20 03:32:26 +00:00
2846aeae6f Merge version_1 into main
Merge version_1 into main
2026-03-20 03:31:55 +00:00
ba891d2ce1 Merge version_1 into main
Merge version_1 into main
2026-03-20 03:31:35 +00:00

View File

@@ -9,7 +9,7 @@ import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TeamCardTen from '@/components/sections/team/TeamCardTen'; import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Crown, Facebook, Instagram, Linkedin, Sparkles, Star, Twitter, Zap } from 'lucide-react'; import { Crown, Facebook, Instagram, Linkedin, Sparkles, Star, Twitter, Zap } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
@@ -213,14 +213,44 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterLogoEmphasis
logoText="Titan Strength Hub" logoText="Titan Strength Hub"
copyrightText="© 2024 Titan Strength Hub. All rights reserved. No Excuses. Only Results." columns={[
socialLinks={[ {
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }, items: [
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" }, { label: "Home", href: "#hero" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, { label: "About", href: "#about" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" } { label: "Services", href: "#services" }
]
},
{
items: [
{ label: "Pricing", href: "#pricing" },
{ label: "Trainers", href: "#trainers" },
{ label: "Contact", href: "#contact" }
]
},
{
items: [
{ label: "Follow Us", href: "#" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" }
]
},
{
items: [
{ label: "Connect", href: "#" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" }
]
},
{
items: [
{ label: "© 2024 Titan Strength Hub" },
{ label: "All rights reserved" },
{ label: "No Excuses. Only Results." }
]
}
]} ]}
ariaLabel="Site Footer" ariaLabel="Site Footer"
/> />