From 45fd3a5b65e89d5b18f8d3f3582159563d1b3ed7 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:13 +0000 Subject: [PATCH] Seed: photography template (19 files) --- src/components/Footer.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/components/Footer.tsx 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