295 lines
16 KiB
TypeScript
295 lines
16 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
|
import { Link } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="small"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="noise"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "#home"},
|
|
{
|
|
name: "About Us", id: "#about"},
|
|
{
|
|
name: "Our Vision", id: "#vision"},
|
|
{
|
|
name: "Our Team", id: "#team"},
|
|
{
|
|
name: "Contact", id: "#contact"},
|
|
]}
|
|
brandName="Mitra & Co."
|
|
/>
|
|
</div>
|
|
|
|
<div id="home" data-section="home">
|
|
<HeroBillboard
|
|
background={{
|
|
variant: "plain"}}
|
|
title="Mitra & Co. Foundation"
|
|
description="Building a stronger tomorrow by investing in visionary ventures today. United by purpose, powered by brotherhood."
|
|
buttons={[
|
|
{
|
|
text: "Learn More", href: "#about"},
|
|
{
|
|
text: "Our Vision", href: "#vision"},
|
|
]}
|
|
avatars={[
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/man-isolated-showing-facial-emotions_1303-20265.jpg", alt: "Brother 1"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", alt: "Brother 2"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/closeup-handsome-young-office-worker-glasses-suit-smiling-camera-looking-happy-white_1258-173667.jpg", alt: "Brother 3"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg", alt: "Brother 4"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", alt: "Brother 5"},
|
|
]}
|
|
avatarText="Founded by 5 Brothers"
|
|
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-planning-glass-wall_53876-15196.jpg"
|
|
imageAlt="Five brothers collaborating on future business plans"
|
|
mediaAnimation="slide-up"
|
|
marqueeItems={[
|
|
{
|
|
type: "text", text: "Empowering Innovation"},
|
|
{
|
|
type: "text", text: "Strategic Investments"},
|
|
{
|
|
type: "text", text: "Collective Strength"},
|
|
{
|
|
type: "text", text: "Sustainable Growth"},
|
|
{
|
|
type: "text", text: "Future Focused Ventures"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
useInvertedBackground={true}
|
|
tag="Our Roots"
|
|
title="Mitra: The Power of Partnership"
|
|
description="Inspired by the Sanskrit word for 'friend' or 'partner,' Mitra & Co. Foundation embodies the spirit of collaboration and shared growth. We are a collective of five brothers, united by a common goal: to nurture and invest in groundbreaking businesses."
|
|
subdescription="Our foundation is built on trust, integrity, and a long-term vision. We believe in empowering entrepreneurs who share our commitment to innovation and sustainable impact."
|
|
icon={Link}
|
|
imageSrc="http://img.b2bpic.net/free-photo/executives-with-digital-tablet-having-meeting-office_1098-1881.jpg"
|
|
imageAlt="Two business partners shaking hands, symbolizing collaboration"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="vision" data-section="vision">
|
|
<FeatureCardTwelve
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
id: "f1", label: "Strategic Funding", title: "Empowering Growth", items: [
|
|
"Providing capital for scalable innovations.", "Focus on long-term value creation.", "Supporting diverse industry sectors."],
|
|
},
|
|
{
|
|
id: "f2", label: "Mentorship & Guidance", title: "Nurturing Talent", items: [
|
|
"Sharing expertise and business acumen.", "Offering strategic advisory services.", "Fostering a network of support."],
|
|
},
|
|
{
|
|
id: "f3", label: "Sustainable Impact", title: "Investing in Tomorrow", items: [
|
|
"Prioritizing ethical and sustainable practices.", "Seeking ventures with positive social footprint.", "Committed to responsible growth."],
|
|
},
|
|
]}
|
|
title="Our Investment Philosophy"
|
|
description="We meticulously select and support ventures that promise both substantial financial returns and positive societal contributions. Our approach is hands-on, collaborative, and future-focused."
|
|
/>
|
|
</div>
|
|
|
|
<div id="impact" data-section="impact">
|
|
<MetricCardEleven
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
metrics={[
|
|
{
|
|
id: "m1", value: "5+", title: "Years of Experience", description: "Building a legacy of successful investments.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-wall-clock-still-life_23-2150533040.jpg", imageAlt: "Clock with cogwheels, symbolizing experience and time"},
|
|
{
|
|
id: "m2", value: "10+", title: "Ventures Funded", description: "Diverse portfolio across emerging markets.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-amazing-cityscape-sunset_181624-45857.jpg", imageAlt: "Graph showing upward trend, symbolizing ventures funded"},
|
|
{
|
|
id: "m3", value: "100%", title: "Brotherhood Strength", description: "United by a common vision and unwavering trust.", imageSrc: "http://img.b2bpic.net/free-photo/young-international-people-working-together-use-laptop_1157-29573.jpg", imageAlt: "Five interlocking hands, symbolizing strong brotherhood"},
|
|
]}
|
|
title="Driving Progress, Building Futures"
|
|
description="Our commitment extends beyond capital. We measure success by the tangible growth and transformative impact our partnerships achieve."
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardTen
|
|
useInvertedBackground={false}
|
|
title="Meet the Brothers Behind Mitra & Co."
|
|
tag="The Founders"
|
|
membersAnimation="slide-up"
|
|
members={[
|
|
{
|
|
id: "bro1", name: "Brother Alok", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg", imageAlt: "Alok, one of the founding brothers"},
|
|
{
|
|
id: "bro2", name: "Brother Bharat", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84734.jpg", imageAlt: "Bharat, one of the founding brothers"},
|
|
{
|
|
id: "bro3", name: "Brother Chetan", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-man-with-mustache-wearing-business-clothes-skeptic-nervous-disapproving-expression-face-with-crossed-arms-negative-person_839833-11180.jpg", imageAlt: "Chetan, one of the founding brothers"},
|
|
{
|
|
id: "bro4", name: "Brother Dhruv", imageSrc: "http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg", imageAlt: "Dhruv, one of the founding brothers"},
|
|
{
|
|
id: "bro5", name: "Brother Eklavya", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-corporate-manager-sitting-with-hands-clasped-outside-office_662251-2057.jpg", imageAlt: "Eklavya, one of the founding brothers"},
|
|
]}
|
|
memberVariant="card"
|
|
/>
|
|
</div>
|
|
|
|
<div id="partners" data-section="partners">
|
|
<SocialProofOne
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={[
|
|
"Innovation Hub", "Future Ventures", "Global Impact Fund", "Growth Capital", "Strategic Allies", "Visionary Collective", "Enterprise Solutions"]}
|
|
title="Trusted Collaborators"
|
|
description="We are proud to partner with leading organizations that share our vision for a prosperous future."
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardThirteen
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "t1", name: "Entrepreneur A", handle: "@innovateA", testimonial: "Mitra & Co. provided not just capital, but invaluable guidance that accelerated our growth exponentially.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6867.jpg", imageAlt: "Portrait of Entrepreneur A"},
|
|
{
|
|
id: "t2", name: "Startup Founder B", handle: "@futureB", testimonial: "Their strategic insights and unwavering support have been pivotal to our success. Truly partners in every sense.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-looking-photographer_23-2148398473.jpg", imageAlt: "Portrait of Startup Founder B"},
|
|
{
|
|
id: "t3", name: "Visionary C", handle: "@visionaryC", testimonial: "The brotherhood's commitment to our vision was inspiring. They believed in us when others hesitated.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-pensive-girl-sitting-desk-dreamily-looking-camera-with-pink-marker-hand-home_574295-3726.jpg", imageAlt: "Portrait of Visionary C"},
|
|
{
|
|
id: "t4", name: "Business Leader D", handle: "@leaderD", testimonial: "A foundation that genuinely invests in people and potential. Their impact goes far beyond financial aid.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-man-writing-down-his-plans_1098-17086.jpg", imageAlt: "Portrait of Business Leader D"},
|
|
{
|
|
id: "t5", name: "Innovator E", handle: "@innovatorE", testimonial: "Working with Mitra & Co. felt like having an extended family. Their support is a game-changer.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/curly-woman-eyeglasses-black-jacket-writting-outdoors-beautiful-woman-with-red-lipstick-brunette-hair-sitting-stairs_197531-19326.jpg", imageAlt: "Portrait of Innovator E"},
|
|
]}
|
|
showRating={true}
|
|
title="Voices of Success"
|
|
description="Hear directly from those who have partnered with Mitra & Co. Foundation and experienced transformative growth."
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
faqs={[
|
|
{
|
|
id: "q1", title: "What is Mitra & Co. Foundation's mission?", content: "Our mission is to empower innovative businesses through strategic investment and mentorship, fostering long-term growth and positive societal impact."},
|
|
{
|
|
id: "q2", title: "Who are the founders of Mitra & Co.?", content: "Mitra & Co. Foundation was established by five brothers, driven by a shared vision for future business development and collective investment."},
|
|
{
|
|
id: "q3", title: "What kind of businesses does the foundation invest in?", content: "We invest in a diverse range of sectors, focusing on ventures with high growth potential, strong leadership, and a commitment to sustainable and ethical practices."},
|
|
{
|
|
id: "q4", title: "How can a business apply for funding? ", content: "Businesses interested in partnering with us can submit an inquiry through our contact form. We review proposals based on alignment with our values and investment criteria."},
|
|
{
|
|
id: "q5", title: "What is the long-term vision of Mitra & Co.?", content: "Our vision is to build a robust portfolio of successful businesses, creating a legacy of wealth and impact that benefits communities and future generations."},
|
|
{
|
|
id: "q6", title: "Does Mitra & Co. offer mentorship?", content: "Yes, beyond financial investment, we provide strategic guidance, access to our network, and hands-on mentorship to support the growth of our partner ventures."},
|
|
]}
|
|
title="Frequently Asked Questions"
|
|
description="Find answers to common questions about Mitra & Co. Foundation, our mission, and how we operate."
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplit
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "plain"}}
|
|
tag="Get in Touch"
|
|
title="Partner with Mitra & Co."
|
|
description="Have a groundbreaking idea or want to learn more about our foundation? Reach out to us."
|
|
imageSrc="http://img.b2bpic.net/free-photo/office-desk-still-life_23-2148111399.jpg"
|
|
imageAlt="Modern office desk with a laptop and a pen, ready for communication"
|
|
mediaAnimation="slide-up"
|
|
mediaPosition="right"
|
|
inputPlaceholder="Your Email Address"
|
|
buttonText="Send Inquiry"
|
|
termsText="By sending an inquiry, you agree to our privacy policy and terms."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
columns={[
|
|
{
|
|
title: "Foundation", items: [
|
|
{
|
|
label: "About Us", href: "#about"},
|
|
{
|
|
label: "Our Vision", href: "#vision"},
|
|
{
|
|
label: "Our Team", href: "#team"},
|
|
],
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{
|
|
label: "FAQ", href: "#faq"},
|
|
{
|
|
label: "Partnerships", href: "#partners"},
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{
|
|
label: "Contact", href: "#contact"},
|
|
{
|
|
label: "LinkedIn", href: "https://linkedin.com/mitraco"},
|
|
],
|
|
},
|
|
]}
|
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ECvGi2s5CV0ENiaAl3KrhoC3Kk/uploaded-1780474290837-kgn01msr.png"
|
|
logoAlt="Mitra & Co. Foundation Logo"
|
|
logoText="Mitra & Co."
|
|
copyrightText="© 2025 Mitra & Co. Foundation. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|