diff --git a/sites/art/src/components/sections/footer.tsx b/sites/art/src/components/sections/footer.tsx index a23a657..3bc1b7f 100644 --- a/sites/art/src/components/sections/footer.tsx +++ b/sites/art/src/components/sections/footer.tsx @@ -1,83 +1,15 @@ -import { FaXTwitter, FaLinkedin, FaFacebook } from "react-icons/fa6"; -import { Home } from "lucide-react"; - -const navigation = [ - { - title: "Products", - links: [ - { name: "VAR", href: "/#code-security" }, - { name: "Credit Transfers", href: "/#why-charter" }, - { name: "Credit Accounts", href: "/#ai-chatbot" }, - { name: "Loan Origination", href: "/#ai-chatbot" }, - { name: "Loan Purchase", href: "/#ai-chatbot" }, - ], - }, - { - title: "Support", - links: [ - { name: "Pricing", href: "/pricing" }, - { name: "FAQ", href: "/faq" }, - { name: "Demo", href: "/contact" }, - { name: "Contact", href: "/contact" }, - ], - }, - { - title: "Company", - links: [ - { name: "About", href: "/about" }, - { name: "Terms of Service", href: "/terms" }, - { name: "Privacy Policy", href: "/privacy" }, - ], - }, -]; - -const socialLinks = [ - { icon: FaXTwitter, href: "https://twitter.com", label: "Twitter" }, - { icon: FaFacebook, href: "https://facebook.com", label: "Facebook" }, - { icon: FaLinkedin, href: "https://linkedin.com", label: "LinkedIn" }, -]; +import SocialLinks from "@/components/social-links"; export default function Footer() { return ( -