Merge version_2 into main #6

Merged
bender merged 1 commits from version_2 into main 2026-03-12 17:43:34 +00:00

View File

@@ -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() {
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterCard
logoText="SLD Services"
copyrightText="© 2025 SLD Services LLC. All rights reserved."
columns={footerColumns}
socialLinks={socialLinks}
/>
</div>
</ThemeProvider>