diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 0000000..3ceae21 --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,72 @@ +"use client"; +import { Container } from "@/components/container"; +import Link from "next/link"; +import { MessageCircle } from "lucide-react"; + +export function Footer() { + return ( + + ); +}