diff --git a/apps/gifting-concierge/src/app/components/footer.tsx b/apps/gifting-concierge/src/app/components/footer.tsx index 4816573..0fbbf90 100644 --- a/apps/gifting-concierge/src/app/components/footer.tsx +++ b/apps/gifting-concierge/src/app/components/footer.tsx @@ -6,9 +6,86 @@ import Link from "next/link"; import React from "react"; import { cn } from "@theliaison/ui"; +import { + Accordion, + AccordionContent, + AccordionItem, + AccordionTrigger, +} from "@theliaison/ui/accordion"; type SocialIconProps = Omit; +import type { SVGProps } from "react"; +const InstagramIcon = (props: SVGProps) => ( + + Instagram + + +); + +const XIcon = (props: SVGProps) => ( + + X + + +); + +const TikTokIcon = (props: SVGProps) => ( + + TikTok + + +); + +const YouTubeIcon = ( + props: SVGProps & { tickFill?: string }, +) => ( + + YouTube + + + +); + const footerNavigation: Array<{ name: string; links: Array<{ @@ -52,16 +129,16 @@ const socialItems = [ { name: "Instagram", href: "https://www.instagram.com/asktheliaison/", - icon: (props: SocialIconProps) => ( + iconLegacy: (props: SocialIconProps) => ( Instagram @@ -71,33 +148,34 @@ const socialItems = [ ), + icon: , }, { name: "X", href: "https://x.com/asktheliaison", - icon: (props: SocialIconProps) => ( + iconLegacy: (props: SocialIconProps) => ( X - + ), + icon: , }, { name: "Tiktok", href: "https://www.tiktok.com/@asktheliaison", - icon: (props: SocialIconProps) => ( + iconLegacy: (props: SocialIconProps) => ( ), + icon: , }, { name: "YouTube", href: "https://www.youtube.com/channel/asktheliaison", - icon: (props: SocialIconProps) => ( + iconLegacy: (props: SocialIconProps) => ( ), + icon: , }, ]; export function Footer({ isDark }: { isDark?: boolean }) { return (