Merge version_17_1778181566107 into main
Merge version_17_1778181566107 into main
This commit was merged in pull request #14.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
@@ -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",
|
||||
|
||||
43
src/pages/misc/AboutPage.tsx
Normal file
43
src/pages/misc/AboutPage.tsx
Normal 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;
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user