6 Commits

Author SHA1 Message Date
fa5db6ca03 Update src/app/page.tsx 2026-03-12 17:43:30 +00:00
b13f204036 Merge version_1 into main
Merge version_1 into main
2026-03-12 17:34:23 +00:00
462c521ca2 Merge version_1 into main
Merge version_1 into main
2026-03-12 17:33:03 +00:00
474fdcd2f4 Merge version_1 into main
Merge version_1 into main
2026-03-12 17:31:17 +00:00
76adc9cf37 Merge version_1 into main
Merge version_1 into main
2026-03-12 17:30:51 +00:00
740a7824a1 Merge version_1 into main
Merge version_1 into main
2026-03-12 17:29:03 +00:00

View File

@@ -10,8 +10,8 @@ import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNinete
import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterCard from "@/components/sections/footer/FooterCard";
import { Shield, Award, Zap, CheckCircle, Users, Star, HelpCircle, Mail, Phone } from "lucide-react"; import { Shield, Award, Zap, CheckCircle, Users, Star, HelpCircle, Mail, Phone, Twitter, Linkedin } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -22,31 +22,10 @@ export default function HomePage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
const footerColumns = [ const socialLinks = [
{ { icon: Twitter, href: "https://twitter.com/sldservices", ariaLabel: "Twitter" },
title: "Company", items: [ { icon: Linkedin, href: "https://linkedin.com/company/sld-services", ariaLabel: "LinkedIn" },
{ label: "About", href: "/about" }, { icon: Mail, href: "mailto:sales@sldservicesllc.com", ariaLabel: "Email" },
{ 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: "#" },
],
},
]; ];
return ( return (
@@ -258,10 +237,10 @@ export default function HomePage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterCard
logoText="SLD Services" logoText="SLD Services"
copyrightText="© 2025 SLD Services LLC. All rights reserved." copyrightText="© 2025 SLD Services LLC. All rights reserved."
columns={footerColumns} socialLinks={socialLinks}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>