From 4ddaba7c7d2f86f12efe610467d13c1e40f21103 Mon Sep 17 00:00:00 2001 From: Neeldhara Misra Date: Sun, 14 Jun 2026 01:54:14 +0200 Subject: [PATCH] Add social links to blog footers --- sites/art/src/components/sections/footer.tsx | 80 +------------- sites/art/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/art/src/styles/global.css | 14 +++ .../poetry/src/components/sections/footer.tsx | 80 +------------- sites/poetry/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/poetry/src/styles/global.css | 14 +++ .../src/components/sections/footer.tsx | 80 +------------- sites/puzzles/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/puzzles/src/styles/global.css | 14 +++ .../src/components/sections/footer.tsx | 80 +------------- .../src/components/social-links.tsx | 104 ++++++++++++++++++ sites/reflections/src/styles/global.css | 14 +++ .../src/components/sections/footer.tsx | 80 +------------- .../research/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/research/src/styles/global.css | 14 +++ .../src/components/sections/footer.tsx | 80 +------------- sites/reviews/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/reviews/src/styles/global.css | 14 +++ .../vibes/src/components/sections/footer.tsx | 80 +------------- sites/vibes/src/components/social-links.tsx | 104 ++++++++++++++++++ sites/vibes/src/styles/global.css | 14 +++ src/components/sections/footer.tsx | 80 +------------- src/components/social-links.tsx | 104 ++++++++++++++++++ src/styles/global.css | 14 +++ 24 files changed, 992 insertions(+), 592 deletions(-) create mode 100644 sites/art/src/components/social-links.tsx create mode 100644 sites/poetry/src/components/social-links.tsx create mode 100644 sites/puzzles/src/components/social-links.tsx create mode 100644 sites/reflections/src/components/social-links.tsx create mode 100644 sites/research/src/components/social-links.tsx create mode 100644 sites/reviews/src/components/social-links.tsx create mode 100644 sites/vibes/src/components/social-links.tsx create mode 100644 src/components/social-links.tsx 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 ( -