Merge version_1 into main #2
@@ -23,98 +23,54 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-body" data-section="about-body">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="About Us"
|
||||
title="Your Partners in Compliance"
|
||||
description="We are a family-owned consultancy with a passion for helping our community thrive."
|
||||
subdescription="Our team brings multilingual support and unmatched local knowledge to every project."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/executives-looking-new-strategy_1098-1869.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
icon={Users}
|
||||
/>
|
||||
</div>
|
||||
<div id="about-body" data-section="about-body">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="About Us"
|
||||
title="Your Partners in Compliance"
|
||||
description="We are a family-owned consultancy with a passion for helping our community thrive."
|
||||
subdescription="Our team brings multilingual support and unmatched local knowledge to every project."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/executives-looking-new-strategy_1098-1869.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
icon={Users}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Community Memberships"
|
||||
description="Proud members of professional NYC associations."
|
||||
names={[
|
||||
"Small Biz Guild",
|
||||
"NYC Entrepeneur Council",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Community Memberships"
|
||||
description="Proud members of professional NYC associations."
|
||||
names={["Small Biz Guild", "NYC Entrepeneur Council"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=3"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -22,107 +22,57 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="Get in touch for a free initial consultation."
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Consultation",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Get in touch for a free initial consultation."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Office Locations"
|
||||
description="We are available across all 5 boroughs."
|
||||
faqs={[
|
||||
{
|
||||
id: "l1",
|
||||
title: "Where are you based?",
|
||||
content: "Manhattan office is open M-F.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-exterior-building-with-glass-window-pattern-textures_74190-2437.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Office Locations"
|
||||
description="We are available across all 5 boroughs."
|
||||
faqs={[
|
||||
{ id: "l1", title: "Where are you based?", content: "Manhattan office is open M-F." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-exterior-building-with-glass-window-pattern-textures_74190-2437.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=6"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -22,116 +22,59 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-body" data-section="faq-body">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How long does licensing take?",
|
||||
content: "Timing varies based on the specific agency and application complexity.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you help with renewals?",
|
||||
content: "Yes, we handle the entire renewal process for all your permits.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "What industries do you support?",
|
||||
content: "We support restaurants, retail, professional services, and more.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Common Questions"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq-body" data-section="faq-body">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "How long does licensing take?", content: "Timing varies based on the specific agency and application complexity." },
|
||||
{ id: "2", title: "Do you help with renewals?", content: "Yes, we handle the entire renewal process for all your permits." },
|
||||
{ id: "3", title: "What industries do you support?", content: "We support restaurants, retail, professional services, and more." },
|
||||
]}
|
||||
sideTitle="Common Questions"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Still have questions?"
|
||||
description="Reach out to our experts."
|
||||
faqs={[
|
||||
{
|
||||
id: "a1",
|
||||
title: "Free Consult?",
|
||||
content: "Yes, always free.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/successful-co-workers_1098-679.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Still have questions?"
|
||||
description="Reach out to our experts."
|
||||
faqs={[
|
||||
{ id: "a1", title: "Free Consult?", content: "Yes, always free." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/successful-co-workers_1098-679.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=5"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
328
src/app/page.tsx
328
src/app/page.tsx
@@ -25,247 +25,105 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Helping NYC Businesses Get Licensed, Renewed & Compliant"
|
||||
description="Your trusted partner for navigating complex government permits and licensing in New York City. We simplify the paperwork so you can focus on growing your business."
|
||||
buttons={[
|
||||
{
|
||||
text: "Request Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:2125550199",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-553.jpg?_wi=1"
|
||||
imageAlt="NYC Business Professional"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Helping NYC Businesses Get Licensed, Renewed & Compliant"
|
||||
description="Your trusted partner for navigating complex government permits and licensing in New York City. We simplify the paperwork so you can focus on growing your business."
|
||||
buttons={[
|
||||
{ text: "Request Consultation", href: "/contact" },
|
||||
{ text: "Call Now", href: "tel:2125550199" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-553.jpg"
|
||||
imageAlt="NYC Business Professional"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Local Expertise",
|
||||
description: "Deep understanding of NYC and NY State licensing rules and regulations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-wearing-apron-attractive-caucasian-male-barista-cafe-restaurant-owner-cross-arms-smile-with-confident-warm-welcome-his-successful-business-place_609648-2444.jpg",
|
||||
imageAlt: "Expertise",
|
||||
},
|
||||
{
|
||||
title: "Multilingual Support",
|
||||
description: "Helping entrepreneurs in English, Korean, and Chinese languages seamlessly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg",
|
||||
imageAlt: "Multilingual",
|
||||
},
|
||||
{
|
||||
title: "Transparent Process",
|
||||
description: "No hidden fees, just clear guidance through every step of your licensing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lady-grey-suit-smiling-camera-background-stylish-cafe-with-lights_291650-638.jpg",
|
||||
imageAlt: "Transparency",
|
||||
},
|
||||
]}
|
||||
title="Why Choose Our Services"
|
||||
description="With years of experience in the NYC landscape, we provide the expertise needed to keep your business running smoothly."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Local Expertise", description: "Deep understanding of NYC and NY State licensing rules and regulations.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-wearing-apron-attractive-caucasian-male-barista-cafe-restaurant-owner-cross-arms-smile-with-confident-warm-welcome-his-successful-business-place_609648-2444.jpg", imageAlt: "Expertise" },
|
||||
{ title: "Multilingual Support", description: "Helping entrepreneurs in English, Korean, and Chinese languages seamlessly.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg", imageAlt: "Multilingual" },
|
||||
{ title: "Transparent Process", description: "No hidden fees, just clear guidance through every step of your licensing.", imageSrc: "http://img.b2bpic.net/free-photo/lady-grey-suit-smiling-camera-background-stylish-cafe-with-lights_291650-638.jpg", imageAlt: "Transparency" },
|
||||
]}
|
||||
title="Why Choose Our Services"
|
||||
description="With years of experience in the NYC landscape, we provide the expertise needed to keep your business running smoothly."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Lee",
|
||||
role: "Restaurant Owner",
|
||||
company: "Lee's Bistro",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/transgender-wearing-cool-jacket-medium-shot_23-2149105398.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Retail Manager",
|
||||
company: "Chen Imports",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Ana Rodriguez",
|
||||
role: "Startup Founder",
|
||||
company: "Ana Tech",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-woman-with-short-hair-apron-hat_141793-47261.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
role: "Cafe Owner",
|
||||
company: "Kim's Cafe",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-traveling-through-city-using-gps_23-2149258628.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jennifer Zhang",
|
||||
role: "Store Owner",
|
||||
company: "Zhang Retail",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bar-tender-standing-with-arms-crossed_107420-65364.jpg",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "1000+",
|
||||
label: "Businesses Helped",
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
label: "Years Experience",
|
||||
},
|
||||
{
|
||||
value: "99%",
|
||||
label: "Success Rate",
|
||||
},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Real feedback from small business owners and entrepreneurs we have helped succeed."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah Lee", role: "Restaurant Owner", company: "Lee's Bistro", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/transgender-wearing-cool-jacket-medium-shot_23-2149105398.jpg" },
|
||||
{ id: "2", name: "Michael Chen", role: "Retail Manager", company: "Chen Imports", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg" },
|
||||
{ id: "3", name: "Ana Rodriguez", role: "Startup Founder", company: "Ana Tech", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-woman-with-short-hair-apron-hat_141793-47261.jpg" },
|
||||
{ id: "4", name: "David Kim", role: "Cafe Owner", company: "Kim's Cafe", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-traveling-through-city-using-gps_23-2149258628.jpg" },
|
||||
{ id: "5", name: "Jennifer Zhang", role: "Store Owner", company: "Zhang Retail", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-bar-tender-standing-with-arms-crossed_107420-65364.jpg" },
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "1000+", label: "Businesses Helped" },
|
||||
{ value: "15+", label: "Years Experience" },
|
||||
{ value: "99%", label: "Success Rate" },
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Real feedback from small business owners and entrepreneurs we have helped succeed."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by NYC's Finest Businesses"
|
||||
description="We partner with local enterprises to navigate the complex licensing landscape with ease."
|
||||
names={[
|
||||
"Brooklyn Bites",
|
||||
"Manhattan Tech Hub",
|
||||
"Queens Retail Collective",
|
||||
"Bronx Cafe Society",
|
||||
"Staten Island Logistics",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by NYC's Finest Businesses"
|
||||
description="We partner with local enterprises to navigate the complex licensing landscape with ease."
|
||||
names={["Brooklyn Bites", "Manhattan Tech Hub", "Queens Retail Collective", "Bronx Cafe Society", "Staten Island Logistics"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Simple Pricing"
|
||||
description="Choose the support level that fits your business needs."
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
name: "Essential Filing",
|
||||
price: "$499",
|
||||
features: [
|
||||
"Document Review",
|
||||
"Application Filing",
|
||||
"Email Support",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
name: "Complete Compliance",
|
||||
price: "$999",
|
||||
features: [
|
||||
"End-to-End Filing",
|
||||
"Priority Support",
|
||||
"Renewal Tracking",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select Plan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Simple Pricing"
|
||||
description="Choose the support level that fits your business needs."
|
||||
plans={[
|
||||
{ id: "basic", name: "Essential Filing", price: "$499", features: ["Document Review", "Application Filing", "Email Support"], buttons: [{ text: "Get Started", href: "/contact" }] },
|
||||
{ id: "pro", name: "Complete Compliance", price: "$999", features: ["End-to-End Filing", "Priority Support", "Renewal Tracking"], buttons: [{ text: "Select Plan", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=1"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -22,114 +22,55 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Community Trust"
|
||||
description="Growing list of partners."
|
||||
names={[
|
||||
"Lee's Bistro",
|
||||
"Kim's Cafe",
|
||||
"Zhang Retail",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Community Trust"
|
||||
description="Growing list of partners."
|
||||
names={["Lee's Bistro", "Kim's Cafe", "Zhang Retail"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="What Clients Say"
|
||||
description="Heartfelt stories of success."
|
||||
testimonials={[
|
||||
{
|
||||
id: "r1",
|
||||
name: "John Doe",
|
||||
role: "Owner",
|
||||
testimonial: "Excellent service!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-705.jpg",
|
||||
imageAlt: "detail shot of skyscrapers",
|
||||
},
|
||||
{
|
||||
id: "r2",
|
||||
name: "Jane Smith",
|
||||
role: "Founder",
|
||||
testimonial: "Highly recommended.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-553.jpg?_wi=2",
|
||||
imageAlt: "detail shot of skyscrapers",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="What Clients Say"
|
||||
description="Heartfelt stories of success."
|
||||
testimonials={[
|
||||
{ id: "r1", name: "John Doe", role: "Owner", testimonial: "Excellent service!", imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-705.jpg", imageAlt: "detail shot of skyscrapers" },
|
||||
{ id: "r2", name: "Jane Smith", role: "Founder", testimonial: "Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-skyscrapers_1359-553.jpg", imageAlt: "detail shot of skyscrapers" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=4"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -22,135 +22,60 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NYC License Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-body" data-section="services-body">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Restaurant License",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-joyful-african-student-woman-with-dark-wavy-hair-green-cardigan-sitting-cafe-drinking-cup-coffee-smiling-camera-woman-waiting-her-boyfriend-after-university_176420-12329.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "LLC Formation",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-staff-standing-with-arms-crossed-super-market_107420-63707.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Permit Renewals",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-man-with-doughnut_23-2148289430.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Compliance Check",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waitress-wearing-apron-smilling-looking-camera-happy-businesswoman-small-business-owner-girl-entrepreneur-cafe-employee-posing-restaurant-coffee-shop_657921-523.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Retail License",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-woman-working-zero-waste-supermarket-adding-pantry-staples-shelves-cheerful-merchant-restocks-local-grocery-store-with-organic-food-reusable-jars-close-up_482257-70907.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Expediting",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-smiling-cute-barista-girl-pouring-filter-coffee-making-order-cafe-client_1258-203375.jpg",
|
||||
},
|
||||
]}
|
||||
title="Comprehensive Licensing Services"
|
||||
description="From restaurant permits to LLC filings, we provide full support."
|
||||
/>
|
||||
</div>
|
||||
<div id="services-body" data-section="services-body">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Restaurant License", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-joyful-african-student-woman-with-dark-wavy-hair-green-cardigan-sitting-cafe-drinking-cup-coffee-smiling-camera-woman-waiting-her-boyfriend-after-university_176420-12329.jpg" },
|
||||
{ id: "2", name: "LLC Formation", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/female-staff-standing-with-arms-crossed-super-market_107420-63707.jpg" },
|
||||
{ id: "3", name: "Permit Renewals", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-man-with-doughnut_23-2148289430.jpg" },
|
||||
{ id: "4", name: "Compliance Check", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/waitress-wearing-apron-smilling-looking-camera-happy-businesswoman-small-business-owner-girl-entrepreneur-cafe-employee-posing-restaurant-coffee-shop_657921-523.jpg" },
|
||||
{ id: "5", name: "Retail License", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-woman-working-zero-waste-supermarket-adding-pantry-staples-shelves-cheerful-merchant-restocks-local-grocery-store-with-organic-food-reusable-jars-close-up_482257-70907.jpg" },
|
||||
{ id: "6", name: "Expediting", price: "Custom Quote", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-smiling-cute-barista-girl-pouring-filter-coffee-making-order-cafe-client_1258-203375.jpg" },
|
||||
]}
|
||||
title="Comprehensive Licensing Services"
|
||||
description="From restaurant permits to LLC filings, we provide full support."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Partnership Standards"
|
||||
description="High-quality compliance services."
|
||||
names={[
|
||||
"Local Business Alliance",
|
||||
"NYC Chamber of Commerce",
|
||||
"Small Business Bureau",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Partnership Standards"
|
||||
description="High-quality compliance services."
|
||||
names={["Local Business Alliance", "NYC Chamber of Commerce", "Small Business Bureau"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=2"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Business Licenses",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Permits",
|
||||
href: "/services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
|
||||
logoText="NYC License Pro"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user