diff --git a/landing-page/src/components/Footer.tsx b/landing-page/src/components/Footer.tsx index 3ad0fc4..257b542 100644 --- a/landing-page/src/components/Footer.tsx +++ b/landing-page/src/components/Footer.tsx @@ -1,82 +1,184 @@ -import { Github, Twitter } from "lucide-react"; +'use client' + + +import { motion } from 'framer-motion' +import { Github, Mail, Linkedin, Youtube } from 'lucide-react' +import Image from 'next/image' +import logo from '../../../public/socialshare.png' + +// Lucide doesn't ship brand logos for Discord, so a small inline SVG covers it. +function DiscordIcon({ className }: { className?: string }) { + return ( + + ) +} export function Footer() { return ( - ); -} + ) +} \ No newline at end of file