Compare commits

...

2 Commits

Author SHA1 Message Date
kudinDmitriyUp
6327404623 Bob AI: Add an about page 2026-05-07 19:26:48 +00:00
2040dec3f4 Merge version_16_1778181287716 into main
Merge version_16_1778181287716 into main
2026-05-07 19:16:54 +00:00
4 changed files with 55 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ import PricingPage from './pages/Pricing';
import ClientsPage from './pages/Clients';
import FaqPage from './pages/Faq';
import MetricsPage from './pages/Metrics';
import AboutPage from './pages/misc/AboutPage';
export default function App() {
return (
@@ -19,6 +21,8 @@ export default function App() {
<Route path="/clients" element={<ClientsPage />} />
<Route path="/faq" element={<FaqPage />} />
<Route path="/metrics" element={<MetricsPage />} />
<Route path="/about" element={<AboutPage />} />
</Route>
</Routes>
);

View File

@@ -33,7 +33,12 @@ export default function Layout() {
{
"name": "Metrics",
"href": "/metrics"
}
},
{
"name": "About",
"href": "/about"
},
];
return (
@@ -77,7 +82,7 @@ export default function Layout() {
items: [
{
label: "About Us",
href: "#",
href: "/about",
},
{
label: "Careers",

View File

@@ -0,0 +1,43 @@
import React from 'react';
import AboutText from '@/components/sections/about/AboutText';
import TeamMinimalCards from '@/components/sections/team/TeamMinimalCards';
const AboutPage: React.FC = () => {
return (
<>
<AboutText
title="Our mission is to empower businesses with cutting-edge financial solutions."
primaryButton={{ text: 'Get Started', href: '/pricing' }}
secondaryButton={{ text: 'Contact Us', href: '#contact' }}
/>
<TeamMinimalCards
tag="Our Team"
title="Meet the experts behind our success"
members={[
{
name: 'John Doe',
role: 'CEO & Founder',
imageSrc: 'https://via.placeholder.com/500x500',
},
{
name: 'Jane Smith',
role: 'Chief Technology Officer',
imageSrc: 'https://via.placeholder.com/500x500',
},
{
name: 'Peter Jones',
role: 'Head of Product',
imageSrc: 'https://via.placeholder.com/500x500',
},
{
name: 'Mary Williams',
role: 'Lead Designer',
imageSrc: 'https://via.placeholder.com/500x500',
},
]}
/>
</>
);
};
export default AboutPage;

View File

@@ -6,4 +6,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
];