diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx deleted file mode 100644 index 99cdbfa..0000000 --- a/src/app/contact/page.tsx +++ /dev/null @@ -1,88 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import Link from "next/link"; - -interface FooterProps { - brandName?: string; - navItems: Array<{ name: string; href: string; }>; -} - -const Footer: React.FC = ({ brandName = "Nexsoft Australia", navItems }) => { - return ( - - ); -}; - -export default function ContactPage() { - const navItems = [ - {name: "Home", id: "home", href: "/"}, - {name: "Contact us", id: "contact", href: "/contact"} - ]; - - const navbarProps = { - brandName: "Nexsoft Australia", navItems: navItems, - button: {text: "Get a Quote", href: "/contact"} - }; - - const handleFormSubmit = (data: Record) => { - console.log("Form submitted:", data); - alert("Thank you for your message! We will get back to you soon."); - }; - - return ( - - -
- -
-