diff --git a/src/App.tsx b/src/App.tsx index 0c968f1..5169a7e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import HomePage from './pages/HomePage'; import ProductsPage from "@/pages/ProductsPage"; import AboutPage from "@/pages/AboutPage"; import FeaturesPage from "@/pages/FeaturesPage"; +import ServicesPage from "@/pages/ServicesPage"; 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 04bf13d..eac9f1e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,6 +38,8 @@ export default function Layout() { { name: "Products", href: "/products" }, { name: "About", href: "/about" }, { name: "Features", href: "/features" }, + { name: "Services", href: "/services" }, + diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx new file mode 100644 index 0000000..2b5491b --- /dev/null +++ b/src/pages/ServicesPage.tsx @@ -0,0 +1,16 @@ +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; + +export default function ServicesPage() { + return ( + <> +
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 81183fe..0756eb2 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -9,4 +9,5 @@ export const routes: Route[] = [ { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, { path: '/features', label: 'Features', pageFile: 'FeaturesPage' }, + { path: '/services', label: 'Services', pageFile: 'ServicesPage' }, ];