From 4de080c477785a0fd47f7b4174a0cb109f34fbdb Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:11:42 +0000 Subject: [PATCH] Seed: real-estate template (18 files) --- src/components/Footer.tsx | 73 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 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..b41d702 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,73 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { MapPin, Phone, Mail, Facebook, Instagram, Twitter, Linkedin, Send } from "lucide-react"; +import { toast } from "sonner"; + +export default function Footer() { + // toast from sonner (imported above) + + const handleNewsletter = (e: React.FormEvent) => { + e.preventDefault(); + toast.success("Subscribed! You'll receive our latest listings."); + }; + + return ( + + ); +} \ No newline at end of file