133 lines
4.8 KiB
TypeScript
133 lines
4.8 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
|
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import Link from "next/link";
|
|
import { Phone } from "lucide-react";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="largeSmallSizeLargeTitles"
|
|
background="aurora"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="medium"
|
|
>
|
|
{/* Navbar */}
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Finance Club Consulting"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Team", id: "/team" },
|
|
]}
|
|
button={{
|
|
text: "Get Consultation",
|
|
href: "/contact",
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
{/* Hero/Header Section */}
|
|
<div id="hero-contact" data-section="hero-contact">
|
|
<HeroSplit
|
|
title="Get in Touch with Our Financial Experts"
|
|
description="Ready to transform your financial future? Connect with our team to discuss your goals and discover how Finance Club Consulting can drive your business forward."
|
|
background={{ variant: "plain" }}
|
|
buttons={[{ text: "Start Your Journey", href: "#contact-form" }]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/executives-with-digital-tablet-having-meeting-office_1098-1881.jpg?_wi=4"
|
|
imageAlt="Contact Finance Club Consulting"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
{/* Contact & FAQ Section */}
|
|
<div id="contact-form" data-section="contact-form">
|
|
<ContactFaq
|
|
ctaTitle="Ready to Transform Your Finances?"
|
|
ctaDescription="Schedule a free consultation with one of our expert advisors to discuss your financial goals and how we can help."
|
|
ctaButton={{
|
|
text: "Book Consultation",
|
|
href: "#",
|
|
}}
|
|
ctaIcon={Phone}
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
accordionAnimationType="smooth"
|
|
showCard={true}
|
|
faqs={[
|
|
{
|
|
id: "1",
|
|
title: "What should I prepare for my consultation?",
|
|
content:
|
|
"Bring any relevant financial documents, business performance reports, and a clear outline of your goals. Our team will review these to provide tailored recommendations.",
|
|
},
|
|
{
|
|
id: "2",
|
|
title: "Is the initial consultation free?",
|
|
content:
|
|
"Yes, we offer a complimentary 1-hour consultation to discuss your situation and determine how we can best serve you.",
|
|
},
|
|
{
|
|
id: "3",
|
|
title: "What industries do you specialize in?",
|
|
content:
|
|
"We have extensive experience across technology, healthcare, real estate, manufacturing, retail, and professional services sectors.",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="Finance Club Consulting"
|
|
copyrightText="© 2025 Finance Club Consulting. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: "Services",
|
|
items: [
|
|
{ label: "Strategic Planning", href: "/services" },
|
|
{ label: "Investment Management", href: "/services" },
|
|
{ label: "Tax Planning", href: "/services" },
|
|
{ label: "Risk Management", href: "/services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Team", href: "/team" },
|
|
{ label: "Case Studies", href: "#" },
|
|
{ label: "Blog", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Contact", href: "/contact" },
|
|
{ label: "Careers", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |