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