Initial commit
This commit is contained in:
180
src/app/about/page.tsx
Normal file
180
src/app/about/page.tsx
Normal file
@@ -0,0 +1,180 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Award, Star, TrendingUp, Users, DollarSign } from 'lucide-react';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="sharp"
|
||||
contentWidth="medium"
|
||||
sizing="large"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="Lose My Money"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Start Investing", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Building Wealth Through Disciplined Investment Strategy"
|
||||
description="Founded on the principle that smart investing is about calculated risks and data-driven decisions, Lose My Money has established itself as a premier investment advisory firm. Our team of seasoned professionals combines decades of experience with cutting-edge analytical tools to deliver consistent, risk-adjusted returns for our institutional clients."
|
||||
tag="Our Story"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/invest-investment-financial-income-profit-costs-concept_53876-128112.jpg"
|
||||
imageAlt="Financial planning and advisory services"
|
||||
useInvertedBackground="noInvert"
|
||||
buttons={[
|
||||
{ text: "View Our Strategy", href: "/services" },
|
||||
{ text: "Contact Our Team", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team-metrics" data-section="team-metrics">
|
||||
<MetricCardOne
|
||||
title="Our Team's Proven Expertise"
|
||||
description="Meet the professionals who make strategic wealth building possible"
|
||||
tag="Leadership Team"
|
||||
tagIcon={Award}
|
||||
useInvertedBackground="invertDefault"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "25+",
|
||||
title: "Years Average Experience",
|
||||
description: "Deep institutional investment expertise",
|
||||
icon: TrendingUp
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "12",
|
||||
title: "Senior Investment Professionals",
|
||||
description: "Dedicated to your portfolio's success",
|
||||
icon: Users
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "8",
|
||||
title: "CFA Charterholders",
|
||||
description: "Highest standard of professional excellence",
|
||||
icon: Award
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "3",
|
||||
title: "PhD Economists",
|
||||
description: "Advanced market research and analysis",
|
||||
icon: DollarSign
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="leadership-testimonials" data-section="leadership-testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Leadership Recognition"
|
||||
description="Industry recognition and client testimonials highlighting our team's expertise"
|
||||
tag="Awards & Recognition"
|
||||
tagIcon={Star}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Investment Excellence Award Winner",
|
||||
quote: "Lose My Money's leadership team was recognized for outstanding performance in institutional portfolio management, delivering top-quartile returns for five consecutive years.",
|
||||
name: "Investment Management Weekly",
|
||||
role: "Industry Publication",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg",
|
||||
imageAlt: "Award recognition"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Trusted Partnership Approach",
|
||||
quote: "Their senior team takes time to understand our unique requirements and builds strategies that align perfectly with our institutional mandate and risk tolerance.",
|
||||
name: "Emma Thompson",
|
||||
role: "Board Member at Foundation for Future Growth",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
imageAlt: "Emma Thompson"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Thought Leadership in Markets",
|
||||
quote: "The research insights and market commentary from their team consistently help us navigate complex investment decisions with confidence and clarity.",
|
||||
name: "David Kim",
|
||||
role: "Portfolio Manager at Pacific Investment Group",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg",
|
||||
imageAlt: "David Kim"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseCard
|
||||
logoText="Lose My Money"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Investment Management", href: "/services" },
|
||||
{ label: "Portfolio Advisory", href: "/services" },
|
||||
{ label: "Risk Assessment", href: "/services" },
|
||||
{ label: "Strategic Consulting", href: "/services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "News & Insights", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Market Reports", href: "#" },
|
||||
{ label: "Investment Guide", href: "#" },
|
||||
{ label: "Performance Data", href: "#" },
|
||||
{ label: "Contact Support", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimers", href: "#" },
|
||||
{ label: "Compliance", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Lose My Money Investment Agency. All rights reserved."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user