diff --git a/src/App.tsx b/src/App.tsx index 57debb8..0c968f1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import HomePage from './pages/HomePage'; import ProductsPage from "@/pages/ProductsPage"; import AboutPage from "@/pages/AboutPage"; +import FeaturesPage from "@/pages/FeaturesPage"; export default function App() { return ( @@ -11,6 +12,7 @@ export default function App() { } /> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d91a666..04bf13d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -37,6 +37,8 @@ export default function Layout() { }, { name: "Products", href: "/products" }, { name: "About", href: "/about" }, + { name: "Features", href: "/features" }, + ]; diff --git a/src/pages/FeaturesPage.tsx b/src/pages/FeaturesPage.tsx new file mode 100644 index 0000000..2922ae3 --- /dev/null +++ b/src/pages/FeaturesPage.tsx @@ -0,0 +1,16 @@ +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; + +export default function FeaturesPage() { + return ( + <> +
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 2a62f3d..81183fe 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -8,4 +8,5 @@ export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, + { path: '/features', label: 'Features', pageFile: 'FeaturesPage' }, ];