diff --git a/src/App.tsx b/src/App.tsx
index 41db568..9616bf1 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import VicforceRecruitmentPage from "@/pages/VicforceRecruitmentPage";
+import AboutUsPage from "@/pages/AboutUsPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 8dcf2ca..1f4bb5a 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -36,6 +36,8 @@ export default function Layout() {
"href": "#contact"
},
{ name: "Vicforce Recruitment", href: "/vicforce-recruitment" },
+ { name: "About Us", href: "/about-us" },
+
];
diff --git a/src/pages/AboutUsPage.tsx b/src/pages/AboutUsPage.tsx
new file mode 100644
index 0000000..3ba0282
--- /dev/null
+++ b/src/pages/AboutUsPage.tsx
@@ -0,0 +1,20 @@
+import Button from "@/components/ui/Button";
+import TextAnimation from "@/components/ui/TextAnimation";
+import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import GridOrCarousel from "@/components/ui/GridOrCarousel";
+import ScrollReveal from "@/components/ui/ScrollReveal";
+import { Quote } from "lucide-react";
+
+export default function AboutUsPage() {
+ return (
+ <>
+
+
+
Jessica T.•Operations Manager
+ >
+ );
+}
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index ee0e7f7..40072ea 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: '/vicforce-recruitment', label: 'Vicforce Recruitment', pageFile: 'VicforceRecruitmentPage' },
+ { path: '/about-us', label: 'About Us', pageFile: 'AboutUsPage' },
];