From 794a2eb62a2cc844349fd76a27d5b4fe56797323 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 15:42:28 +0000 Subject: [PATCH] Update src/app/submit/page.tsx --- src/app/submit/page.tsx | 81 +++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 48 deletions(-) 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 ( -
- + -
- -
-