diff --git a/src/App.tsx b/src/App.tsx index cd68efa..92f1900 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import HomePage from './pages/HomePage'; import VorOrtServicePage from "@/pages/VorOrtServicePage"; import AboutPage from "@/pages/AboutPage"; import SuccessPage from "@/pages/SuccessPage"; +import ContactPage from "@/pages/ContactPage"; export default function App() { return ( @@ -13,6 +14,7 @@ export default function App() { } /> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9284953..30bac28 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -107,6 +107,8 @@ export default function Layout() { { name: "Vor Ort Service", href: "/vor-ort-service" }, { name: "About", href: "/about" }, { name: "Success", href: "/success" }, + { name: "Contact", href: "/contact" }, + diff --git a/src/pages/ContactPage.tsx b/src/pages/ContactPage.tsx new file mode 100644 index 0000000..1ecfd8a --- /dev/null +++ b/src/pages/ContactPage.tsx @@ -0,0 +1,17 @@ +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function ContactPage() { + return ( + <> +
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index e769859..9f1ebec 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -9,4 +9,5 @@ export const routes: Route[] = [ { path: '/vor-ort-service', label: 'Vor Ort Service', pageFile: 'VorOrtServicePage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, { path: '/success', label: 'Success', pageFile: 'SuccessPage' }, + { path: '/contact', label: 'Contact', pageFile: 'ContactPage' }, ];