diff --git a/src/App.tsx b/src/App.tsx index 9ecbaf7..311a8e5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,12 +2,14 @@ import { BrowserRouter, Routes, Route } from "react-router-dom"; import HomePage from "@/pages/HomePage"; import PricingFeaturesPage from "@/pages/PricingFeaturesPage"; +import SimpleAboutPage from "@/pages/SimpleAboutPage"; export default function App() { return ( } /> } /> + } /> ); diff --git a/src/pages/SimpleAboutPage.tsx b/src/pages/SimpleAboutPage.tsx new file mode 100644 index 0000000..70d1e56 --- /dev/null +++ b/src/pages/SimpleAboutPage.tsx @@ -0,0 +1,69 @@ +import NavbarCentered from "@/components/ui/NavbarCentered"; +import Button from "@/components/ui/Button"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import { routes } from "@/routes"; + +export default function SimpleAboutPage() { + const navItems = routes.map((r) => ({ name: r.label, href: r.path })); + + return ( +
+ +
+ {/* Hero Section */} +
+
+

Our Story, Our Mission

+

We are a dedicated team committed to creating innovative solutions that empower businesses and individuals alike.

+
+ + +
+
+
+ + {/* About Section */} +
+
+
+
+

Who We Are

+

Founded on principles of innovation and user-centric design, our journey began with a simple goal: to make technology accessible and impactful. We believe in continuous improvement and fostering strong relationships with our community.

+
+
+

Innovation

+

Constantly exploring new ideas and technologies.

+
+
+

Quality

+

Delivering robust and reliable products.

+
+
+

Integrity

+

Operating with transparency and honesty.

+
+
+

Customer Success

+

Prioritizing our users' growth and satisfaction.

+
+
+
+
+ +
+
+
+
+ + {/* Contact Section */} +
+
+

Ready to Connect?

+

Whether you have a question or just want to say hello, we'd love to hear from you.

+ +
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 20a65e5..197d3a4 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: '/pricing-features', label: 'Pricing Features', pageFile: 'PricingFeaturesPage' }, + { path: '/simple-about', label: 'Simple About', pageFile: 'SimpleAboutPage' }, ];