diff --git a/src/App.tsx b/src/App.tsx
index 4cc1975..8591d72 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import PortfolioPage from "@/pages/PortfolioPage";
+import AboutPage from "@/pages/AboutPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 46b6439..8876bfe 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -36,6 +36,8 @@ export default function Layout() {
"href": "#faq"
},
{ name: "Portfolio", href: "/portfolio" },
+ { name: "About", href: "/about" },
+
];
diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx
new file mode 100644
index 0000000..7b84d22
--- /dev/null
+++ b/src/pages/AboutPage.tsx
@@ -0,0 +1,22 @@
+import Button from "@/components/ui/Button";
+import TextAnimation from "@/components/ui/TextAnimation";
+import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit";
+
+export default function AboutPage() {
+ return (
+ <>
+
+
+ >
+ );
+}
diff --git a/src/routes.ts b/src/routes.ts
index bf82e0c..f2db14b 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: '/portfolio', label: 'Portfolio', pageFile: 'PortfolioPage' },
+ { path: '/about', label: 'About', pageFile: 'AboutPage' },
];