diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..2ed347e --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,25 @@ +import { Instagram, Globe, Video } from "lucide-react"; + +export default function Footer() { + const socials = [ + { Icon: Instagram, label: "Instagram", href: "#" }, + { Icon: Globe, label: "Behance", href: "#" }, + { Icon: Video, label: "Vimeo", href: "#" }, + ]; + + return ( + + ); +} \ No newline at end of file