diff --git a/src/app/page.tsx b/src/app/page.tsx index 08f7647..6698736 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,8 @@ import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNinete import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import FooterBase from "@/components/sections/footer/FooterBase"; -import { Shield, Award, Zap, CheckCircle, Users, Star, HelpCircle, Mail, Phone } from "lucide-react"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Shield, Award, Zap, CheckCircle, Users, Star, HelpCircle, Mail, Phone, Twitter, Linkedin } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -22,31 +22,10 @@ export default function HomePage() { { name: "Contact", id: "/contact" }, ]; - const footerColumns = [ - { - title: "Company", items: [ - { label: "About", href: "/about" }, - { label: "Services", href: "/services" }, - { label: "Team", href: "/" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - title: "Resources", items: [ - { label: "DLA Resources", href: "/resources" }, - { label: "Partners", href: "/resources" }, - { label: "FAQ", href: "/" }, - { label: "Contract Types", href: "/resources" }, - ], - }, - { - title: "Contact", items: [ - { label: "Phone: 910.650.8353", href: "tel:+19106508353" }, - { label: "Email: sales@sldservicesllc.com", href: "mailto:sales@sldservicesllc.com" }, - { label: "825 College Blvd Suite 102-642, Oceanside, CA 92057", href: "#" }, - { label: "Privacy Policy", href: "#" }, - ], - }, + const socialLinks = [ + { icon: Twitter, href: "https://twitter.com/sldservices", ariaLabel: "Twitter" }, + { icon: Linkedin, href: "https://linkedin.com/company/sld-services", ariaLabel: "LinkedIn" }, + { icon: Mail, href: "mailto:sales@sldservicesllc.com", ariaLabel: "Email" }, ]; return ( @@ -258,10 +237,10 @@ export default function HomePage() {