From daa779c4ec65f4db2dafe4d4fbdf7ab71f0247e2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 17:49:47 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..0648b78 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,14 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; + +export default function ContactPage() { + return ( + + + + + ); +} \ No newline at end of file