From bcd71f9e5b882c1d35d2ff63f52807c85597c168 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:49:50 +0000 Subject: [PATCH] Switch to version 1: remove src/app/contact/page.tsx --- src/app/contact/page.tsx | 88 ---------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 src/app/contact/page.tsx 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 ( -
-
-
- {brandName} -
- -
- © {new Date().getFullYear()} {brandName}. All rights reserved. -
-
-
- ); -}; - -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 ( - - -
- -
-