Merge version_1 into main #2
344
src/app/page.tsx
344
src/app/page.tsx
@@ -10,7 +10,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { BookOpen, Briefcase, Building2, Calendar, PieChart, TrendingUp, User, Users } from "lucide-react";
|
||||
import { BookOpen, Calendar, User, Users, Building2, PieChart, TrendingUp, Handshake } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -18,247 +18,125 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
]}
|
||||
brandName="JK Business Solutions"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="JK Business Solutions"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="JK Business Solutions"
|
||||
description="The financial partner who actually knows your name. Over a decade of trust, serving Sherwood Park with expert accounting and personalized financial strategy."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Free Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-hispanic-woman-business-worker-smiling-pointing-camera-office_839833-26359.jpg",
|
||||
imageAlt: "Kelly meeting with client",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-desk-with-laptop_23-2149304008.jpg?_wi=1",
|
||||
imageAlt: "Modern financial office",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="JK Business Solutions"
|
||||
description="The financial partner who actually knows your name. Over a decade of trust, serving Sherwood Park with expert accounting and personalized financial strategy."
|
||||
buttons={[{ text: "Book a Free Consultation", href: "#contact" }]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-hispanic-woman-business-worker-smiling-pointing-camera-office_839833-26359.jpg", imageAlt: "professional accountant meeting client" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-desk-with-laptop_23-2149304008.jpg", imageAlt: "luxury office desk workspace" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: User,
|
||||
title: "Personal Tax Returns",
|
||||
description: "Accurate, stress-free filing for individuals and families.",
|
||||
},
|
||||
{
|
||||
icon: Building2,
|
||||
title: "Corporate Tax Filing",
|
||||
description: "Proactive strategies for business compliance and savings.",
|
||||
},
|
||||
{
|
||||
icon: PieChart,
|
||||
title: "Business Accounting",
|
||||
description: "Streamlined bookkeeping to keep your business running smoothly.",
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
title: "Retirement & Savings",
|
||||
description: "Long-term planning designed to protect your wealth.",
|
||||
},
|
||||
{
|
||||
icon: Briefcase,
|
||||
title: "Financial Consulting",
|
||||
description: "Expert advice to help you reach your life goals.",
|
||||
},
|
||||
]}
|
||||
title="Comprehensive Financial Expertise"
|
||||
description="Tailored financial solutions to protect your future and streamline your business."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ icon: User, title: "Personal Tax Returns", description: "Accurate, stress-free filing for individuals and families." },
|
||||
{ icon: Building2, title: "Corporate Tax Filing", description: "Proactive strategies for business compliance and savings." },
|
||||
{ icon: PieChart, title: "Business Accounting", description: "Streamlined bookkeeping to keep your business running smoothly." },
|
||||
{ icon: TrendingUp, title: "Retirement & Savings", description: "Long-term planning designed to protect your wealth." },
|
||||
{ icon: Handshake, title: "Financial Consulting", description: "Expert advice to help you reach your life goals." }
|
||||
]}
|
||||
title="Comprehensive Financial Expertise"
|
||||
description="Tailored financial solutions to protect your future and streamline your business."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={true}
|
||||
title="You're Not a File Number Here"
|
||||
description={[
|
||||
"Kelly believes that real financial security comes from real relationships. With over 10 years of loyal client partnerships in Sherwood Park, Kelly brings a human touch to the world of accounting.",
|
||||
"You're a name she knows, a story she remembers, and a future she helps protect. Experience fast turnaround times, competitive pricing, and a partner who is always in your corner.",
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Free Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={true}
|
||||
title="You're Not a File Number Here"
|
||||
description={[
|
||||
"Kelly believes that real financial security comes from real relationships. With over 10 years of loyal client partnerships in Sherwood Park, Kelly brings a human touch to the world of accounting.", "You're a name she knows, a story she remembers, and a future she helps protect. Experience fast turnaround times, competitive pricing, and a partner who is always in your corner."
|
||||
]}
|
||||
buttons={[{ text: "Book a Free Consultation", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rita J.",
|
||||
role: "Client",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "David D.",
|
||||
role: "10-Year Client",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-multiracial-business-team_1262-21007.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chris H.",
|
||||
role: "Client since 2013",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-businessman-wearing-suit-headshot-vertical-portrait-with-team_1163-3924.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Norma B.",
|
||||
role: "Client",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-happy-be-back-work_23-2148727621.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Justin M.",
|
||||
role: "Client",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-pretty-middleaged-caucasian-lady-black-shirt-with-smile-her-face-looks-camera-blurred-background_197531-31170.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Bill C.",
|
||||
role: "Corporate Client",
|
||||
company: "Sherwood Park",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg",
|
||||
},
|
||||
]}
|
||||
title="Trusted by Your Neighbours"
|
||||
description="Join hundreds of happy clients who trust Kelly with their financial journey."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Rita J.", role: "Client", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg" },
|
||||
{ id: "2", name: "David D.", role: "10-Year Client", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-multiracial-business-team_1262-21007.jpg" },
|
||||
{ id: "3", name: "Chris H.", role: "Client since 2013", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-businessman-wearing-suit-headshot-vertical-portrait-with-team_1163-3924.jpg" },
|
||||
{ id: "4", name: "Norma B.", role: "Client", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-happy-be-back-work_23-2148727621.jpg" },
|
||||
{ id: "5", name: "Justin M.", role: "Client", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-pretty-middleaged-caucasian-lady-black-shirt-with-smile-her-face-looks-camera-blurred-background_197531-31170.jpg" },
|
||||
{ id: "6", name: "Bill C.", role: "Corporate Client", company: "Sherwood Park", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg" }
|
||||
]}
|
||||
title="Trusted by Your Neighbours"
|
||||
description="Join hundreds of happy clients who trust Kelly with their financial journey."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust-bar" data-section="trust-bar">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "10+",
|
||||
title: "Years",
|
||||
description: "In Business",
|
||||
icon: Calendar,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "Hundreds",
|
||||
title: "Happy",
|
||||
description: "Clients Served",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "Full",
|
||||
title: "Service",
|
||||
description: "Personal & Corporate",
|
||||
icon: BookOpen,
|
||||
},
|
||||
]}
|
||||
title="A Decade of Excellence"
|
||||
description="Serving Sherwood Park and beyond with integrity."
|
||||
/>
|
||||
</div>
|
||||
<div id="trust-bar" data-section="trust-bar">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{ id: "1", value: "10+", title: "Years", description: "In Business", icon: Calendar },
|
||||
{ id: "2", value: "Hundreds", title: "Happy", description: "Clients Served", icon: Users },
|
||||
{ id: "3", value: "Full", title: "Service", description: "Personal & Corporate", icon: BookOpen }
|
||||
]}
|
||||
title="A Decade of Excellence"
|
||||
description="Serving Sherwood Park and beyond with integrity."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Ready to Stop Stressing?"
|
||||
description="Let's discuss your financial goals in a free, no-obligation consultation."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help?",
|
||||
rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-desk-with-laptop_23-2149304008.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Ready to Stop Stressing?"
|
||||
description="Let's discuss your financial goals in a free, no-obligation consultation."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-desk-with-laptop_23-2149304008.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="JK Business Solutions"
|
||||
leftLink={{
|
||||
text: "Sherwood Park, AB",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Accounting with a personal touch.",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="JK Business Solutions"
|
||||
leftLink={{ text: "Sherwood Park, AB", href: "#" }}
|
||||
rightLink={{ text: "Accounting with a personal touch.", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user