Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-20 05:24:25 +00:00

View File

@@ -9,7 +9,7 @@ import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
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';
export default function LandingPage() {
@@ -213,14 +213,44 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoEmphasis
logoText="Titan Strength Hub"
copyrightText="© 2024 Titan Strength Hub. All rights reserved. No Excuses. Only Results."
socialLinks={[
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" }
columns={[
{
items: [
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ 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"
/>