diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx deleted file mode 100644 index 77e6acf..0000000 --- a/src/app/contact/page.tsx +++ /dev/null @@ -1,141 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import ReactLenis from "lenis/react"; - -export const metadata = { - title: 'Contact Jay Rao', - description: 'Reach out to Jay Rao for game development collaborations, job inquiries, or general discussions.', -}; - -export default function ContactPage() { - const navItems = [ - { - name: "Home", id: "/" - }, - { - name: "About", id: "/#about" - }, - { - name: "Skills", id: "/#skills" - }, - { - name: "Projects", id: "/#featured-projects" - }, - { - name: "Blog", id: "/#blog" - }, - { - name: "Contact", id: "/contact" - } - ]; - - const footerColumns = [ - { - title: "Quick Links", items: [ - { - label: "Home", href: "/" - }, - { - label: "About", href: "/#about" - }, - { - label: "Skills", href: "/#skills" - } - ] - }, - { - title: "Projects", items: [ - { - label: "Featured Projects", href: "/#featured-projects" - }, - { - label: "Full Portfolio", href: "/#project-gallery" - }, - { - label: "Devlog", href: "/#blog" - } - ] - }, - { - title: "Connect", items: [ - { - label: "Contact Me", href: "/contact" - }, - { - label: "LinkedIn", href: "https://linkedin.com/in/jayrao" - }, - { - label: "GitHub", href: "https://github.com/jayrao" - } - ] - } - ]; - - return ( - - - - -
- -
- - -
-
- ); -}