diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..31ec78f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import ServicesPage from "@/pages/ServicesPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a1cc363..5fe667d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -33,7 +33,9 @@ export default function Layout() { { "name": "Testimonials", "href": "#testimonials" - } + }, + { name: "Services", href: "/services" }, + ]; return ( diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx new file mode 100644 index 0000000..6033250 --- /dev/null +++ b/src/pages/ServicesPage.tsx @@ -0,0 +1,31 @@ +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; +import ContactCta from "@/components/sections/contact/ContactCta"; + +export default function ServicesPage() { + return ( + <> + + + + + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..6b7660e 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/services', label: 'Services', pageFile: 'ServicesPage' }, ];