Update src/app/page.tsx
This commit is contained in:
234
src/app/page.tsx
234
src/app/page.tsx
@@ -28,26 +28,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Why Us",
|
||||
id: "why-us",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Why Us", id: "why-us" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="BIA Business Consultants"
|
||||
/>
|
||||
@@ -55,43 +40,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Start Your Business Without Stress"
|
||||
description="We handle company registration, LLP incorporation, and business licensing quickly and professionally."
|
||||
avatars={[
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-young-profess-1774779908698-cf3905b7.png",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-female-execut-1774779908413-48054678.png",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-smiling-profe-1774779906782-8860382c.png",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png",
|
||||
alt: "Client 5",
|
||||
},
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png", alt: "Client 1" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-young-profess-1774779908698-cf3905b7.png", alt: "Client 2" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-female-execut-1774779908413-48054678.png", alt: "Client 3" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-smiling-profe-1774779906782-8860382c.png", alt: "Client 4" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png", alt: "Client 5" },
|
||||
]}
|
||||
avatarText="Trusted by 500+ Businesses"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started Today",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Get Started Today", href: "#contact" },
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -99,25 +61,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Complex documentation",
|
||||
"Delayed approvals",
|
||||
"Hidden compliance fees",
|
||||
"Regulatory uncertainty",
|
||||
"Confusing tax paperwork",
|
||||
],
|
||||
items: ["Complex documentation", "Delayed approvals", "Hidden compliance fees", "Regulatory uncertainty", "Confusing tax paperwork"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Fast company registration",
|
||||
"Seamless LLP incorporation",
|
||||
"Full licensing support",
|
||||
"Hassle-free GST registration",
|
||||
"Ongoing compliance",
|
||||
],
|
||||
items: ["Fast company registration", "Seamless LLP incorporation", "Full licensing support", "Hassle-free GST registration", "Ongoing compliance"],
|
||||
}}
|
||||
title="Our Services"
|
||||
description="Comprehensive solutions tailored to your business needs."
|
||||
@@ -127,43 +78,14 @@ export default function LandingPage() {
|
||||
<div id="why-us" data-section="why-us">
|
||||
<MetricCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Fast & Reliable",
|
||||
subtitle: "Turnaround time",
|
||||
category: "Efficiency",
|
||||
value: "24h",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Expert Guidance",
|
||||
subtitle: "Industry experience",
|
||||
category: "Support",
|
||||
value: "10+ Yrs",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Transparency",
|
||||
subtitle: "Process integrity",
|
||||
category: "Trust",
|
||||
value: "100%",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "End-to-End",
|
||||
subtitle: "Full coverage",
|
||||
category: "Service",
|
||||
value: "Full",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Customer First",
|
||||
subtitle: "Client satisfaction",
|
||||
category: "Relationship",
|
||||
value: "98%",
|
||||
},
|
||||
{ id: "1", title: "Fast & Reliable", subtitle: "Turnaround time", category: "Efficiency", value: "24h" },
|
||||
{ id: "2", title: "Expert Guidance", subtitle: "Industry experience", category: "Support", value: "10+ Yrs" },
|
||||
{ id: "3", title: "Transparency", subtitle: "Process integrity", category: "Trust", value: "100%" },
|
||||
{ id: "4", title: "End-to-End", subtitle: "Full coverage", category: "Service", value: "Full" },
|
||||
{ id: "5", title: "Customer First", subtitle: "Client satisfaction", category: "Relationship", value: "98%" },
|
||||
]}
|
||||
title="Why Choose BIA Business Consultants"
|
||||
description="We are your partners in growth, delivering results with integrity."
|
||||
@@ -176,46 +98,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anil Kumar",
|
||||
role: "Director",
|
||||
testimonial: "BIA Business Consultants completed my company registration on time and perfectly. I really appreciate their professionalism.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png?_wi=1",
|
||||
imageAlt: "Anil Kumar",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sarah Jenkins",
|
||||
role: "Founder",
|
||||
testimonial: "From the very first call to receiving the certificate, they guided me with clear and accurate information.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-young-profess-1774779908698-cf3905b7.png",
|
||||
imageAlt: "Sarah Jenkins",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Rahul Verma",
|
||||
role: "Partner",
|
||||
testimonial: "Great experience with LLP incorporation. The team guided us clearly through each step. Documentation was smooth.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-female-execut-1774779908413-48054678.png",
|
||||
imageAlt: "Rahul Verma",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Priya Sharma",
|
||||
role: "CEO",
|
||||
testimonial: "Exceptional service and quick turnaround. Highly recommended for any new startup looking for expert help.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-smiling-profe-1774779906782-8860382c.png",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Marcus Thorne",
|
||||
role: "Manager",
|
||||
testimonial: "Professional, efficient, and very knowledgeable. They made the entire compliance process look easy.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png?_wi=2",
|
||||
imageAlt: "Marcus Thorne",
|
||||
},
|
||||
{ id: "1", name: "Anil Kumar", role: "Director", testimonial: "BIA Business Consultants completed my company registration on time and perfectly. I really appreciate their professionalism.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png", imageAlt: "Anil Kumar" },
|
||||
{ id: "2", name: "Sarah Jenkins", role: "Founder", testimonial: "From the very first call to receiving the certificate, they guided me with clear and accurate information.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-young-profess-1774779908698-cf3905b7.png", imageAlt: "Sarah Jenkins" },
|
||||
{ id: "3", name: "Rahul Verma", role: "Partner", testimonial: "Great experience with LLP incorporation. The team guided us clearly through each step. Documentation was smooth.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-female-execut-1774779908413-48054678.png", imageAlt: "Rahul Verma" },
|
||||
{ id: "4", name: "Priya Sharma", role: "CEO", testimonial: "Exceptional service and quick turnaround. Highly recommended for any new startup looking for expert help.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-smiling-profe-1774779906782-8860382c.png", imageAlt: "Priya Sharma" },
|
||||
{ id: "5", name: "Marcus Thorne", role: "Manager", testimonial: "Professional, efficient, and very knowledgeable. They made the entire compliance process look easy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/professional-headshot-of-a-business-exec-1774779908434-8d382cb7.png", imageAlt: "Marcus Thorne" },
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear from those who trusted us with their business journey."
|
||||
@@ -228,31 +115,11 @@ export default function LandingPage() {
|
||||
title="Contact Us"
|
||||
description="Ready to get started? Our experts are here to help."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Your Phone Number",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Describe your business needs",
|
||||
rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Describe your business needs", rows: 4, required: true }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcDqvFjXuYxq0lcWp6elWBAf7u/minimalist-clean-business-concept-illust-1774779908808-d21d3563.png"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Get a Free Consultation"
|
||||
@@ -262,42 +129,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#why-us",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }] },
|
||||
{ items: [{ label: "About Us", href: "#why-us" }, { label: "Contact", href: "#contact" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="BIA Business Consultants"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user