diff --git a/src/app/(community)/add-community/page.tsx b/src/app/(community)/add-community/page.tsx new file mode 100644 index 0000000..4583406 --- /dev/null +++ b/src/app/(community)/add-community/page.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +function page() { + return
page
; +} + +export default page; diff --git a/src/app/(community)/explore-community/page.tsx b/src/app/(community)/explore-community/page.tsx new file mode 100644 index 0000000..4583406 --- /dev/null +++ b/src/app/(community)/explore-community/page.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +function page() { + return
page
; +} + +export default page; diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e7fcee4..62f6d40 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,6 +6,7 @@ import { Space_Grotesk } from "next/font/google"; import { motion } from "framer-motion"; import { Mail, MapPin, Phone } from "lucide-react"; import { toast } from "sonner"; +import { Button } from "@/components/ui/button"; const spaceGrotesk = Space_Grotesk({ subsets: ["latin"] }); @@ -85,7 +86,7 @@ function Page() { onChange={(e) => setName(e.target.value)} placeholder="Your Name" required - className="w-full p-3 bg-white bg-opacity-5 rounded-xl text-white placeholder-gray-400" + className="w-full p-3 border dark:border-white border-black bg-white bg-opacity-5 rounded-xl text-white placeholder-gray-400" /> setEmail(e.target.value)} placeholder="Your Email" required - className="w-full p-3 bg-white bg-opacity-5 rounded-xl text-white placeholder-gray-400" + className="w-full p-3 border dark:border-white border-black bg-white bg-opacity-5 rounded-xl text-white placeholder-gray-400" />