Compare commits
3 Commits
version_15
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6327404623 | ||
| 2040dec3f4 | |||
|
|
cd27a07b18 |
@@ -7,6 +7,8 @@ import PricingPage from './pages/Pricing';
|
|||||||
import ClientsPage from './pages/Clients';
|
import ClientsPage from './pages/Clients';
|
||||||
import FaqPage from './pages/Faq';
|
import FaqPage from './pages/Faq';
|
||||||
import MetricsPage from './pages/Metrics';
|
import MetricsPage from './pages/Metrics';
|
||||||
|
import AboutPage from './pages/misc/AboutPage';
|
||||||
|
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
return (
|
return (
|
||||||
@@ -19,6 +21,8 @@ export default function App() {
|
|||||||
<Route path="/clients" element={<ClientsPage />} />
|
<Route path="/clients" element={<ClientsPage />} />
|
||||||
<Route path="/faq" element={<FaqPage />} />
|
<Route path="/faq" element={<FaqPage />} />
|
||||||
<Route path="/metrics" element={<MetricsPage />} />
|
<Route path="/metrics" element={<MetricsPage />} />
|
||||||
|
<Route path="/about" element={<AboutPage />} />
|
||||||
|
|
||||||
</Route>
|
</Route>
|
||||||
</Routes>
|
</Routes>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -33,7 +33,12 @@ export default function Layout() {
|
|||||||
{
|
{
|
||||||
"name": "Metrics",
|
"name": "Metrics",
|
||||||
"href": "/metrics"
|
"href": "/metrics"
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"name": "About",
|
||||||
|
"href": "/about"
|
||||||
|
},
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -77,7 +82,7 @@ export default function Layout() {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us",
|
||||||
href: "#",
|
href: "/about",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers",
|
||||||
|
|||||||
@@ -48,10 +48,19 @@ const FooterBasic = ({
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
<div className="w-full md:w-1/3">
|
||||||
|
<iframe
|
||||||
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d214827.9391993325!2d-117.32725643033326!3d32.74946396037413!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80d9530fad921e4b%3A0xd3a21fdfd15df79!2sSan%20Diego%2C%20CA%2C%20USA!5e0!3m2!1sen!2sua!4v1715192157289!5m2!1sen!2sua"
|
||||||
|
width="100%"
|
||||||
|
height="200"
|
||||||
|
style={{ border: 0 }}
|
||||||
|
allowFullScreen
|
||||||
|
loading="lazy"
|
||||||
|
referrerPolicy="no-referrer-when-downgrade"
|
||||||
|
></iframe>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="w-full h-px bg-foreground/20" />
|
<div className="w-full h-px bg-foreground/20" />
|
||||||
|
|
||||||
<div className="w-full flex items-center justify-between pt-5">
|
<div className="w-full flex items-center justify-between pt-5">
|
||||||
<span className="text-sm opacity-50">{leftText}</span>
|
<span className="text-sm opacity-50">{leftText}</span>
|
||||||
<span className="text-sm opacity-50">{rightText}</span>
|
<span className="text-sm opacity-50">{rightText}</span>
|
||||||
|
|||||||
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[] = [
|
export const routes: Route[] = [
|
||||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||||
|
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user