diff --git a/src/App.tsx b/src/App.tsx
index c9c6d8e..57debb8 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ProductsPage from "@/pages/ProductsPage";
+import AboutPage from "@/pages/AboutPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index a85ae25..d91a666 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -36,6 +36,8 @@ export default function Layout() {
"href": "#features"
},
{ name: "Products", href: "/products" },
+ { name: "About", href: "/about" },
+
];
diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx
new file mode 100644
index 0000000..af78c16
--- /dev/null
+++ b/src/pages/AboutPage.tsx
@@ -0,0 +1,10 @@
+import Button from "@/components/ui/Button";
+import TextAnimation from "@/components/ui/TextAnimation";
+
+export default function AboutPage() {
+ return (
+ <>
+
+ >
+ );
+}
diff --git a/src/routes.ts b/src/routes.ts
index 93d7fae..2a62f3d 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
+ { path: '/about', label: 'About', pageFile: 'AboutPage' },
];