Files
e557eb80-f02b-4065-bdfd-188…/src/app/about/page.tsx
2026-03-03 01:20:01 +00:00

136 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import SplitAbout from "@/components/sections/about/SplitAbout";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Star, Target, Lightbulb } from "lucide-react";
import Link from "next/link";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
{ label: "Mutual Funds", href: "/services" },
{ label: "Equity Investments", href: "/services" },
{ label: "Insurance Planning", href: "/services" },
{ label: "Loans", href: "/services" },
{ label: "Real Estate", href: "/services" },
],
},
{
title: "Connect", items: [
{ label: "Email Us", href: "mailto:info@evergrowwealth.com" },
{ label: "WhatsApp", href: "#" },
{ label: "Call Now", href: "tel:+919876543210" },
{ label: "Book Appointment", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
{ label: "SEBI Compliance", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Book Consultation", href: "/contact" }}
brandName="EVERGROW WEALTH"
/>
</div>
<div id="about-company" data-section="about-company" className="py-16 md:py-28">
<SplitAbout
title="Our Story & Mission"
description="EVERGROW WEALTH was founded in 2017 by Preeti Goyal with a singular vision: to make expert financial guidance accessible to everyone. Our journey has been marked by a commitment to transparency, integrity, and client success. We believe that financial planning shouldn't be complicated, and we're dedicated to simplifying it for every Indian family seeking to build long-term wealth."
tag="Preeti Goyal - Founder & Lead Advisor"
tagAnimation="entrance-slide"
textboxLayout="default"
useInvertedBackground={false}
bulletPoints={[
{
title: "Expertise in Wealth Management", description: "Over 7 years of dedicated experience in financial product consulting and advisory services.", icon: Target,
},
{
title: "Innovative Financial Solutions", description: "Combining traditional wisdom with modern investment strategies to optimize your portfolio.", icon: Lightbulb,
},
{
title: "Trusted by Thousands", description: "Building trust with 100+ happy clients who have achieved their financial goals with our guidance.", icon: Star,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg"
imageAlt="Preeti Goyal, Founder of EVERGROW WEALTH"
mediaAnimation="slide-up"
imagePosition="right"
buttons={[{ text: "Connect with Us", href: "/contact" }]}
buttonAnimation="slide-up"
ariaLabel="About company section"
/>
</div>
<div id="client-trust" data-section="client-trust" className="py-16 md:py-28">
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "Rajesh Patel", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Rajesh Patel"},
{
id: "2", name: "Priya Sharma", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Priya Sharma"},
{
id: "3", name: "Amit Kumar", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Amit Kumar"},
{
id: "4", name: "Neha Gupta", imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Neha Gupta"},
]}
cardTitle="Our clients are the foundation of our success and their trust fuels our commitment to excellence."
cardTag="Trusted by the Best"
cardTagIcon={Star}
cardAnimation="blur-reveal"
useInvertedBackground={false}
ariaLabel="Client trust testimonials"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2024 EVERGROW WEALTH. All rights reserved."
bottomRightText="Trusted Financial Guidance Since 2017"
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>
);
}