diff --git a/src/app/submit/page.tsx b/src/app/submit/page.tsx index 99c9b84..a975885 100644 --- a/src/app/submit/page.tsx +++ b/src/app/submit/page.tsx @@ -1,20 +1,18 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Lightbulb, Bell } from "lucide-react"; +import { Upload, CheckCircle } from "lucide-react"; -export default function SubmitPage() { +export default function SubmitBotPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Directory", id: "/directory" }, - { name: "Categories", id: "/categories" }, + { name: "Categories", id: "categories" }, { name: "Submit Bot", id: "/submit" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ @@ -22,13 +20,13 @@ export default function SubmitPage() { items: [ { label: "Home", href: "/" }, { label: "Directory", href: "/directory" }, - { label: "Categories", href: "/categories" }, + { label: "Categories", href: "categories" }, ], }, { items: [ { label: "Submit Bot", href: "/submit" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "contact" }, { label: "FAQ", href: "#faq" }, ], }, @@ -48,6 +46,11 @@ export default function SubmitPage() { }, ]; + const handleSubmit = (data: Record) => { + console.log("Bot submission:", data); + // Handle form submission + }; + return ( -
- + -
- -
-