Merge version_1 into main #3

Merged
bender merged 5 commits from version_1 into main 2026-03-07 03:28:29 +00:00
5 changed files with 193 additions and 454 deletions

View File

@@ -1,13 +1,10 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Building2, Users, Clock, TrendingUp } from "lucide-react";
import Link from "next/link";
export default function AboutPage() {
return (
@@ -17,131 +14,66 @@ export default function AboutPage() {
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="JBS"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Consultation",
href: "/#contact",
}}
text: "Book Consultation", href: "#contact"}}
animateOnLoad={true}
/>
</div>
{/* About Section */}
<div id="about" data-section="about">
<TextSplitAbout
title="Our Story"
description={[
"JBS (Jamshidi Businessmen Services) was founded on the belief that establishing a business in the UAE should be straightforward, transparent, and supported by true experts. We recognized the challenges entrepreneurs and international investors face when navigating UAE regulations and market dynamics.",
"Today, we've grown into one of Dubai's most trusted corporate services providers, having successfully guided over 500 companies through their setup journey. From startups to multinational enterprises, our clients trust us because we deliver results with integrity and professionalism.",
"We're committed to being more than just a service provider—we're your strategic partner in building a successful business in the UAE. Every consultation, every document, every decision is guided by our core mission: your success.",
]}
useInvertedBackground={false}
showBorder={false}
/>
</div>
{/* Why Choose JBS Section */}
<div id="why-choose" data-section="why-choose">
<div id="about-section" data-section="about-section">
<FeatureCardEight
title="What Makes Us Different"
description="Our commitment to excellence and client success"
title="Our Story"
description="From vision to reality - how JBS came to be"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: 1,
title: "Deep UAE Expertise",
description: "With years of experience in UAE corporate law and business setup, our team possesses comprehensive knowledge that ensures compliance and optimal outcomes.",
imageSrc: "http://img.b2bpic.net/free-photo/young-black-businesswoman-signs-documents-buys-new-car-car-dealer-is-standing-him_146671-18392.jpg?_wi=2",
imageAlt: "Deep UAE expertise",
},
title: "Founded with Purpose", description:
"JBS was established to simplify business setup in Dubai, founded by entrepreneurs who understood the complexities of UAE regulations firsthand.", imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-men-working_23-2148349936.jpg", imageAlt: "business startup launch registration documents"},
{
id: 2,
title: "Client-Centric Approach",
description: "We believe every business is unique. Our personalized services are tailored to your specific needs, goals, and timeline—not one-size-fits-all solutions.",
imageSrc: "http://img.b2bpic.net/free-photo/hr-manager-interviewing-woman-after-doing-background-checks_482257-115673.jpg?_wi=2",
imageAlt: "Client-centric support",
},
title: "Rapid Growth", description:
"Through our dedication to excellence and client success, we've helped over 500 companies establish operations in the UAE.", imageSrc:
"http://img.b2bpic.net/free-vector/gradient-patented-label-collection_23-2149722723.jpg", imageAlt: "business license approval government certification"},
{
id: 3,
title: "Transparent & Honest",
description: "No hidden fees, no surprises. We believe in clear communication and transparent pricing from the first consultation to the final handover of your business.",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-call-center-with-headphones-computer_23-2149256095.jpg?_wi=2",
imageAlt: "Transparent service",
},
title: "Industry Leadership", description:
"Today, JBS stands as a trusted partner for entrepreneurs and investors worldwide seeking to launch businesses in Dubai and the UAE.", imageSrc:
"http://img.b2bpic.net/free-photo/content-businesspeople-discussing-project-watching-documents-standing-together-near-table-with-laptops_74855-9756.jpg", imageAlt: "professional corporate office management services"},
{
id: 4,
title: "Our Commitment", description:
"We remain committed to providing transparent, efficient, and personalized service to every client who entrusts us with their business journey.", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-two-businesspeople-shaking-hands_23-2147838559.jpg", imageAlt: "business strategy growth consulting charts"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
{/* Metrics Section */}
<div id="metrics" data-section="metrics">
<MetricCardThree
title="By The Numbers"
description="Our impact and commitment to client success"
tag="Our Achievements"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
metrics={[
{
id: "1",
icon: Building2,
title: "Companies Established",
value: "500+",
},
{
id: "2",
icon: Users,
title: "Happy Clients",
value: "300+",
},
{
id: "3",
icon: Clock,
title: "Years in Business",
value: "15+",
},
{
id: "4",
icon: TrendingUp,
title: "Success Rate",
value: "99%",
},
]}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="JBS"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -4,8 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Phone } from "lucide-react";
import Link from "next/link";
import { Phone } from "lucide-react";
export default function ContactPage() {
return (
@@ -15,10 +15,10 @@ export default function ContactPage() {
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
@@ -31,9 +31,7 @@ export default function ContactPage() {
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Consultation",
href: "#contact",
}}
text: "Book Consultation", href: "#contact"}}
animateOnLoad={true}
/>
</div>
@@ -42,44 +40,26 @@ export default function ContactPage() {
<ContactFaq
ctaTitle="Ready to Start Your Business?"
ctaDescription="Schedule a free consultation with our team to discuss your business goals and explore the perfect setup solution for your needs."
ctaButton={{
text: "Book Your Free Consultation",
href: "#",
}}
ctaButton={{ text: "Book Your Free Consultation", href: "#" }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"
faqs={[
{
id: "1",
title: "How long does company setup typically take?",
content:
"Most mainland company setups take 7-14 days, while free zone companies can be established in 3-5 days. The timeline depends on document processing and government approvals. We keep you informed throughout the process.",
},
id: "1", title: "How long does company setup typically take?", content:
"Most mainland company setups take 7-14 days, while free zone companies can be established in 3-5 days. The timeline depends on document processing and government approvals. We keep you informed throughout the process."},
{
id: "2",
title: "What are the costs for company formation?",
content:
"Costs vary based on business type, location, and structure. We provide transparent, itemized quotes with no hidden fees. Free zone setups typically range from AED 3,000-8,000, while mainland companies vary based on capital requirements and license type.",
},
id: "2", title: "What are the costs for company formation?", content:
"Costs vary based on business type, location, and structure. We provide transparent, itemized quotes with no hidden fees. Free zone setups typically range from AED 3,000-8,000, while mainland companies vary based on capital requirements and license type."},
{
id: "3",
title: "Do I need to be physically present in Dubai?",
content:
"Not necessarily. We can handle most documentation remotely. However, you may need to visit for specific signatures or approvals. We'll guide you on what requires your physical presence and help arrange appointments efficiently.",
},
id: "3", title: "Do I need to be physically present in Dubai?", content:
"Not necessarily. We can handle most documentation remotely. However, you may need to visit for specific signatures or approvals. We'll guide you on what requires your physical presence and help arrange appointments efficiently."},
{
id: "4",
title: "What visa services does JBS provide?",
content:
"We assist with employment visas, dependent visas, and investor visas. Our PRO services handle all documentation, medical examinations, and government processing to ensure smooth visa applications for you and your family.",
},
id: "4", title: "What visa services does JBS provide?", content:
"We assist with employment visas, dependent visas, and investor visas. Our PRO services handle all documentation, medical examinations, and government processing to ensure smooth visa applications for you and your family."},
{
id: "5",
title: "Can I change my business structure later?",
content:
"Yes, business structures can be modified, though it involves some administrative procedures. We recommend choosing the optimal structure from the start. Our consultation helps ensure you select the best option for your goals.",
},
id: "5", title: "Can I change my business structure later?", content:
"Yes, business structures can be modified, though it involves some administrative procedures. We recommend choosing the optimal structure from the start. Our consultation helps ensure you select the best option for your goals."},
]}
/>
</div>
@@ -87,16 +67,10 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="JBS"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,74 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "JBS Dubai | Business Setup & Corporate Services UAE",
description: "JBS helps entrepreneurs and investors establish and grow businesses in Dubai. Expert company formation, licensing, visa services, and business consulting for international companies.",
keywords: "business setup Dubai, company formation UAE, free zone setup, corporate services, business consultant Dubai, startup support",
metadataBase: new URL("https://jbs-dubai.ae"),
alternates: {
canonical: "https://jbs-dubai.ae",
},
openGraph: {
title: "JBS - Launch Your Business in Dubai",
description: "Professional business setup and corporate services for entrepreneurs and international investors in the UAE.",
url: "https://jbs-dubai.ae",
siteName: "JBS Dubai",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/los-angeles-downtown-night-with-urban-buildings-lake_649448-4079.jpg",
alt: "Dubai Business Bay - JBS Office",
},
],
},
twitter: {
card: "summary_large_image",
title: "JBS Dubai - Business Setup & Corporate Services",
description: "Expert company formation and business consulting for entrepreneurs in Dubai.",
images: ["http://img.b2bpic.net/free-photo/los-angeles-downtown-night-with-urban-buildings-lake_649448-4079.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "JBS - Business Setup & Consulting in Dubai", description: "Launch and grow your business in Dubai with JBS. Professional corporate services, company formation, and business development consulting for entrepreneurs and international investors in the UAE.", keywords: "business setup Dubai, company formation UAE, corporate services, business consulting, PRO services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,15 +1,15 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import Link from "next/link";
import { Building2, Users, Clock, TrendingUp, Phone } from "lucide-react";
export default function HomePage() {
@@ -20,50 +20,38 @@ export default function HomePage() {
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="JBS"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book Consultation",
href: "/#contact",
}}
text: "Book Consultation", href: "#contact"}}
animateOnLoad={true}
/>
</div>
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="JBS"
description="Launch and grow your business in Dubai with confidence. Professional corporate services and business development consulting for entrepreneurs, investors, and international companies seeking to establish operations in the UAE."
buttons={[
{
text: "Start Your Business",
href: "/#contact",
},
{
text: "Book Consultation",
href: "/#contact",
},
{ text: "Start Your Business", href: "#contact" },
{ text: "Book Consultation", href: "#contact" },
]}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/los-angeles-downtown-night-with-urban-buildings-lake_649448-4079.jpg"
imageAlt="Dubai Business Bay skyline"
imageAlt="Dubai Business Bay skyline modern towers"
mediaAnimation="slide-up"
frameStyle="card"
buttonAnimation="opacity"
@@ -71,27 +59,17 @@ export default function HomePage() {
/>
</div>
{/* About Section */}
<div id="about" data-section="about">
<TextSplitAbout
title="About JBS"
description={[
"JBS (Jamshidi Businessmen Services) is a Dubai-based corporate services and business development consultancy specializing in helping entrepreneurs, investors, and international companies establish and grow their businesses in the United Arab Emirates.",
"With deep expertise in UAE regulations, market dynamics, and government procedures, we provide end-to-end support from company formation and licensing to government documentation, visa processing, and strategic business consulting.",
"Our mission is to be your trusted partner in navigating the complexities of UAE business setup, enabling you to focus on what matters most—growing your business.",
]}
buttons={[
{
text: "Learn Our Story",
href: "/about",
},
]}
"JBS (Jamshidi Businessmen Services) is a Dubai-based corporate services and business development consultancy specializing in helping entrepreneurs, investors, and international companies establish and grow their businesses in the United Arab Emirates.", "With deep expertise in UAE regulations, market dynamics, and government procedures, we provide end-to-end support from company formation and licensing to government documentation, visa processing, and strategic business consulting.", "Our mission is to be your trusted partner in navigating the complexities of UAE business setup, enabling you to focus on what matters most—growing your business."]}
buttons={[{ text: "Learn Our Story", href: "/about" }]}
useInvertedBackground={false}
showBorder={false}
/>
</div>
{/* Services Section */}
<div id="services" data-section="services">
<FeatureCardEight
title="Our Services"
@@ -102,39 +80,29 @@ export default function HomePage() {
features={[
{
id: 1,
title: "Company Formation",
description: "Streamlined setup for mainland and free zone companies with full regulatory compliance and documentation support.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-working_23-2148349936.jpg?_wi=1",
imageAlt: "Company formation services",
},
title: "Company Formation", description:
"Streamlined setup for mainland and free zone companies with full regulatory compliance and documentation support.", imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-men-working_23-2148349936.jpg", imageAlt: "business startup launch registration documents"},
{
id: 2,
title: "Business Licensing",
description: "Expert guidance through licensing procedures, approvals, and all government documentation requirements.",
imageSrc: "http://img.b2bpic.net/free-vector/gradient-patented-label-collection_23-2149722723.jpg?_wi=1",
imageAlt: "Business licensing guidance",
},
title: "Business Licensing", description:
"Expert guidance through licensing procedures, approvals, and all government documentation requirements.", imageSrc:
"http://img.b2bpic.net/free-vector/gradient-patented-label-collection_23-2149722723.jpg", imageAlt: "business license approval government certification"},
{
id: 3,
title: "Corporate Services",
description: "PRO services, visa processing, office solutions, and ongoing compliance management for your business.",
imageSrc: "http://img.b2bpic.net/free-photo/content-businesspeople-discussing-project-watching-documents-standing-together-near-table-with-laptops_74855-9756.jpg?_wi=1",
imageAlt: "Corporate services support",
},
title: "Corporate Services", description:
"PRO services, visa processing, office solutions, and ongoing compliance management for your business.", imageSrc:
"http://img.b2bpic.net/free-photo/content-businesspeople-discussing-project-watching-documents-standing-together-near-table-with-laptops_74855-9756.jpg", imageAlt: "professional corporate office management services"},
{
id: 4,
title: "Business Development",
description: "Strategic consulting, market entry strategies, and partnership advisory to accelerate your growth.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-two-businesspeople-shaking-hands_23-2147838559.jpg?_wi=1",
imageAlt: "Business development consulting",
},
title: "Business Development", description:
"Strategic consulting, market entry strategies, and partnership advisory to accelerate your growth.", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-two-businesspeople-shaking-hands_23-2147838559.jpg", imageAlt: "business strategy growth consulting charts"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
{/* Process Section */}
<div id="process" data-section="process">
<FeatureCardEight
title="How It Works"
@@ -145,39 +113,29 @@ export default function HomePage() {
features={[
{
id: 1,
title: "Initial Consultation",
description: "Meet with our experts to discuss your business vision, goals, and specific requirements for UAE market entry.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-people-office_23-2148427062.jpg?_wi=1",
imageAlt: "Initial consultation meeting",
},
title: "Initial Consultation", description:
"Meet with our experts to discuss your business vision, goals, and specific requirements for UAE market entry.", imageSrc:
"http://img.b2bpic.net/free-photo/front-view-business-people-office_23-2148427062.jpg", imageAlt: "business consultation meeting professional advisors"},
{
id: 2,
title: "Business Structure Planning",
description: "We analyze market opportunities and recommend the optimal business structure, location, and licensing approach.",
imageSrc: "http://img.b2bpic.net/free-vector/business-infographic-with-pic_23-2148334381.jpg?_wi=1",
imageAlt: "Business structure planning",
},
title: "Business Structure Planning", description:
"We analyze market opportunities and recommend the optimal business structure, location, and licensing approach.", imageSrc:
"http://img.b2bpic.net/free-vector/business-infographic-with-pic_23-2148334381.jpg", imageAlt: "business planning strategy roadmap flowchart"},
{
id: 3,
title: "Company Registration",
description: "Handle all registration, licensing, and documentation with government entities, banks, and regulatory bodies.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-sitting-table-filling-document_1262-16899.jpg?_wi=1",
imageAlt: "Company registration process",
},
title: "Company Registration", description:
"Handle all registration, licensing, and documentation with government entities, banks, and regulatory bodies.", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-businessman-sitting-table-filling-document_1262-16899.jpg", imageAlt: "official registration documents government processing"},
{
id: 4,
title: "Business Launch Support",
description: "Ongoing support including office setup, visa processing, compliance monitoring, and strategic guidance.",
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-birthday-celebration-facebook-cover_23-2150749612.jpg?_wi=1",
imageAlt: "Business launch support",
},
title: "Business Launch Support", description:
"Ongoing support including office setup, visa processing, compliance monitoring, and strategic guidance.", imageSrc:
"http://img.b2bpic.net/free-vector/hand-drawn-birthday-celebration-facebook-cover_23-2150749612.jpg", imageAlt: "business launch celebration success opening"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
{/* Why Choose JBS Section */}
<div id="why-choose" data-section="why-choose">
<FeatureCardEight
title="Why Choose JBS"
@@ -187,39 +145,73 @@ export default function HomePage() {
features={[
{
id: 1,
title: "Deep UAE Expertise",
description: "Comprehensive knowledge of UAE regulations, market dynamics, and government procedures backed by years of successful client engagements.",
imageSrc: "http://img.b2bpic.net/free-photo/young-black-businesswoman-signs-documents-buys-new-car-car-dealer-is-standing-him_146671-18392.jpg?_wi=1",
imageAlt: "UAE expertise and knowledge",
},
title: "Deep UAE Expertise", description:
"Comprehensive knowledge of UAE regulations, market dynamics, and government procedures backed by years of successful client engagements.", imageSrc:
"http://img.b2bpic.net/free-photo/young-black-businesswoman-signs-documents-buys-new-car-car-dealer-is-standing-him_146671-18392.jpg", imageAlt: "expert professional knowledge experience expertise"},
{
id: 2,
title: "Fast & Transparent",
description: "Efficient processes with clear timelines and transparent pricing. No hidden fees, no surprises—just honest, professional service.",
imageSrc: "http://img.b2bpic.net/free-photo/hr-manager-interviewing-woman-after-doing-background-checks_482257-115673.jpg?_wi=1",
imageAlt: "Fast and transparent service",
},
title: "Fast & Transparent", description:
"Efficient processes with clear timelines and transparent pricing. No hidden fees, no surprises—just honest, professional service.", imageSrc:
"http://img.b2bpic.net/free-photo/hr-manager-interviewing-woman-after-doing-background-checks_482257-115673.jpg", imageAlt: "transparent business communication honest dealing"},
{
id: 3,
title: "Personalized Support",
description: "Dedicated account managers who understand your unique business needs and provide customized solutions for success.",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-call-center-with-headphones-computer_23-2149256095.jpg?_wi=1",
imageAlt: "Personalized support services",
},
title: "Personalized Support", description:
"Dedicated account managers who understand your unique business needs and provide customized solutions for success.", imageSrc:
"http://img.b2bpic.net/free-photo/man-working-call-center-with-headphones-computer_23-2149256095.jpg", imageAlt: "professional support team customer service"},
{
id: 4,
title: "Prime Location",
description: "Based in Business Bay, Dubai's premier business hub, offering convenient access and positioning at the heart of UAE commerce.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-reflecting-water_23-2151991993.jpg?_wi=1",
imageAlt: "Business Bay Dubai location",
},
title: "Prime Location", description:
"Based in Business Bay, Dubai's premier business hub, offering convenient access and positioning at the heart of UAE commerce.", imageSrc:
"http://img.b2bpic.net/free-photo/modern-skyscrapers-reflecting-water_23-2151991993.jpg", imageAlt: "Business Bay Dubai office location premium"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
{/* Metrics Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Clients Say"
description="Trusted by entrepreneurs and investors from around the world"
tag="Testimonials"
textboxLayout="default"
useInvertedBackground={false}
showRating={true}
testimonials={[
{
id: "1", name: "Ahmed Al-Mansouri", handle: "CEO, Tech Innovations UAE", testimonial:
"JBS made our company setup seamless and hassle-free. Their expertise in UAE regulations saved us months of research and countless headaches. Highly recommended!", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg", imageAlt: "professional business man portrait headshot"},
{
id: "2", name: "Sarah Johnson", handle: "Founder, Global Business Solutions", testimonial:
"Professional, responsive, and incredibly knowledgeable. JBS went above and beyond to ensure our business was set up correctly from day one.", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg", imageAlt: "professional woman business portrait photo"},
{
id: "3", name: "Marco Rossi", handle: "Managing Director, European Enterprises", testimonial:
"As an international investor new to Dubai, JBS provided the guidance and support I needed. Their transparency and professionalism are unmatched.", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280713.jpg", imageAlt: "international business professional male portrait"},
{
id: "4", name: "Fatima Al-Zahra", handle: "Owner, Regional Trading Company", testimonial:
"Exceptional service from start to finish. JBS understood our business needs and delivered solutions that exceeded our expectations.", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg", imageAlt: "Arab businesswoman professional portrait photo"},
{
id: "5", name: "James Chen", handle: "Director, Asia-Pacific Operations", testimonial:
"JBS is our go-to partner for all UAE business matters. Their team's dedication and expertise make them invaluable to our success.", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-lawyer-portrait_23-2151202435.jpg", imageAlt: "Asian business executive portrait professional"},
{
id: "6", name: "Layla Hassan", handle: "Entrepreneur, E-Commerce Startup", testimonial:
"From first consultation to final launch, JBS provided expert guidance at every step. They truly care about client success.", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/business-woman-standing-office-formal-wear_1303-31834.jpg", imageAlt: "young professional woman portrait photo"},
]}
animationType="slide-up"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
title="Our Track Record"
@@ -229,159 +221,49 @@ export default function HomePage() {
useInvertedBackground={false}
animationType="slide-up"
metrics={[
{
id: "1",
icon: Building2,
title: "Companies Formed",
value: "500+",
},
{
id: "2",
icon: Users,
title: "International Clients",
value: "300+",
},
{
id: "3",
icon: Clock,
title: "Average Setup Time",
value: "10 Days",
},
{
id: "4",
icon: TrendingUp,
title: "Success Rate",
value: "99%",
},
{ id: "1", icon: Building2, title: "Companies Formed", value: "500+" },
{ id: "2", icon: Users, title: "International Clients", value: "300+" },
{ id: "3", icon: Clock, title: "Average Setup Time", value: "10 Days" },
{ id: "4", icon: TrendingUp, title: "Success Rate", value: "99%" },
]}
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Clients Say"
description="Trusted by entrepreneurs and investors from around the world"
tag="Testimonials"
textboxLayout="default"
useInvertedBackground={false}
showRating={true}
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Ahmed Al-Mansouri",
handle: "CEO, Tech Innovations UAE",
testimonial: "JBS made our company setup seamless and hassle-free. Their expertise in UAE regulations saved us months of research and countless headaches. Highly recommended!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
imageAlt: "Ahmed Al-Mansouri",
},
{
id: "2",
name: "Sarah Johnson",
handle: "Founder, Global Business Solutions",
testimonial: "Professional, responsive, and incredibly knowledgeable. JBS went above and beyond to ensure our business was set up correctly from day one.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-posing-outdoors-suit_23-2148603024.jpg",
imageAlt: "Sarah Johnson",
},
{
id: "3",
name: "Marco Rossi",
handle: "Managing Director, European Enterprises",
testimonial: "As an international investor new to Dubai, JBS provided the guidance and support I needed. Their transparency and professionalism are unmatched.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280713.jpg",
imageAlt: "Marco Rossi",
},
{
id: "4",
name: "Fatima Al-Zahra",
handle: "Owner, Regional Trading Company",
testimonial: "Exceptional service from start to finish. JBS understood our business needs and delivered solutions that exceeded our expectations.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg",
imageAlt: "Fatima Al-Zahra",
},
{
id: "5",
name: "James Chen",
handle: "Director, Asia-Pacific Operations",
testimonial: "JBS is our go-to partner for all UAE business matters. Their team's dedication and expertise make them invaluable to our success.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-lawyer-portrait_23-2151202435.jpg",
imageAlt: "James Chen",
},
{
id: "6",
name: "Layla Hassan",
handle: "Entrepreneur, E-Commerce Startup",
testimonial: "From first consultation to final launch, JBS provided expert guidance at every step. They truly care about client success.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing-office-formal-wear_1303-31834.jpg",
imageAlt: "Layla Hassan",
},
]}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Ready to Start Your Business?"
ctaDescription="Schedule a free consultation with our team to discuss your business goals and explore the perfect setup solution for your needs."
ctaButton={{
text: "Book Your Free Consultation",
href: "#",
}}
ctaButton={{ text: "Book Your Free Consultation", href: "#" }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"
faqs={[
{
id: "1",
title: "How long does company setup typically take?",
content: "Most mainland company setups take 7-14 days, while free zone companies can be established in 3-5 days. The timeline depends on document processing and government approvals. We keep you informed throughout the process.",
},
id: "1", title: "How long does company setup typically take?", content:
"Most mainland company setups take 7-14 days, while free zone companies can be established in 3-5 days. The timeline depends on document processing and government approvals. We keep you informed throughout the process."},
{
id: "2",
title: "What are the costs for company formation?",
content: "Costs vary based on business type, location, and structure. We provide transparent, itemized quotes with no hidden fees. Free zone setups typically range from AED 3,000-8,000, while mainland companies vary based on capital requirements and license type.",
},
id: "2", title: "What are the costs for company formation?", content:
"Costs vary based on business type, location, and structure. We provide transparent, itemized quotes with no hidden fees. Free zone setups typically range from AED 3,000-8,000, while mainland companies vary based on capital requirements and license type."},
{
id: "3",
title: "Do I need to be physically present in Dubai?",
content: "Not necessarily. We can handle most documentation remotely. However, you may need to visit for specific signatures or approvals. We'll guide you on what requires your physical presence and help arrange appointments efficiently.",
},
id: "3", title: "Do I need to be physically present in Dubai?", content:
"Not necessarily. We can handle most documentation remotely. However, you may need to visit for specific signatures or approvals. We'll guide you on what requires your physical presence and help arrange appointments efficiently."},
{
id: "4",
title: "What visa services does JBS provide?",
content: "We assist with employment visas, dependent visas, and investor visas. Our PRO services handle all documentation, medical examinations, and government processing to ensure smooth visa applications for you and your family.",
},
id: "4", title: "What visa services does JBS provide?", content:
"We assist with employment visas, dependent visas, and investor visas. Our PRO services handle all documentation, medical examinations, and government processing to ensure smooth visa applications for you and your family."},
{
id: "5",
title: "Can I change my business structure later?",
content: "Yes, business structures can be modified, though it involves some administrative procedures. We recommend choosing the optimal structure from the start. Our consultation helps ensure you select the best option for your goals.",
},
id: "5", title: "Can I change my business structure later?", content:
"Yes, business structures can be modified, though it involves some administrative procedures. We recommend choosing the optimal structure from the start. Our consultation helps ensure you select the best option for your goals."},
]}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="JBS"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -44,23 +44,26 @@ export default function ServicesPage() {
useInvertedBackground={false}
features={[
{
id: "1", title: "Company Formation", description:
id: 1,
title: "Company Formation", description:
"Streamlined setup for mainland and free zone companies with full regulatory compliance and documentation support.", imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-men-working_23-2148349936.jpg", imageAlt: "business startup launch registration documents"},
{
id: "2", title: "Business Licensing", description:
id: 2,
title: "Business Licensing", description:
"Expert guidance through licensing procedures, approvals, and all government documentation requirements.", imageSrc:
"http://img.b2bpic.net/free-vector/gradient-patented-label-collection_23-2149722723.jpg", imageAlt: "business license approval government certification"},
{
id: "3", title: "Corporate Services", description:
id: 3,
title: "Corporate Services", description:
"PRO services, visa processing, office solutions, and ongoing compliance management for your business.", imageSrc:
"http://img.b2bpic.net/free-photo/content-businesspeople-discussing-project-watching-documents-standing-together-near-table-with-laptops_74855-9756.jpg", imageAlt: "professional corporate office management services"},
{
id: "4", title: "Business Development", description:
id: 4,
title: "Business Development", description:
"Strategic consulting, market entry strategies, and partnership advisory to accelerate your growth.", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-two-businesspeople-shaking-hands_23-2147838559.jpg", imageAlt: "business strategy growth consulting charts"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
@@ -74,23 +77,26 @@ export default function ServicesPage() {
useInvertedBackground={false}
features={[
{
id: "1", title: "Initial Consultation", description:
id: 1,
title: "Initial Consultation", description:
"Meet with our experts to discuss your business vision, goals, and specific requirements for UAE market entry.", imageSrc:
"http://img.b2bpic.net/free-photo/front-view-business-people-office_23-2148427062.jpg", imageAlt: "business consultation meeting professional advisors"},
{
id: "2", title: "Business Structure Planning", description:
id: 2,
title: "Business Structure Planning", description:
"We analyze market opportunities and recommend the optimal business structure, location, and licensing approach.", imageSrc:
"http://img.b2bpic.net/free-vector/business-infographic-with-pic_23-2148334381.jpg", imageAlt: "business planning strategy roadmap flowchart"},
{
id: "3", title: "Company Registration", description:
id: 3,
title: "Company Registration", description:
"Handle all registration, licensing, and documentation with government entities, banks, and regulatory bodies.", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-businessman-sitting-table-filling-document_1262-16899.jpg", imageAlt: "official registration documents government processing"},
{
id: "4", title: "Business Launch Support", description:
id: 4,
title: "Business Launch Support", description:
"Ongoing support including office setup, visa processing, compliance monitoring, and strategic guidance.", imageSrc:
"http://img.b2bpic.net/free-vector/hand-drawn-birthday-celebration-facebook-cover_23-2150749612.jpg", imageAlt: "business launch celebration success opening"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
@@ -103,23 +109,26 @@ export default function ServicesPage() {
useInvertedBackground={false}
features={[
{
id: "1", title: "Deep UAE Expertise", description:
id: 1,
title: "Deep UAE Expertise", description:
"Comprehensive knowledge of UAE regulations, market dynamics, and government procedures backed by years of successful client engagements.", imageSrc:
"http://img.b2bpic.net/free-photo/young-black-businesswoman-signs-documents-buys-new-car-car-dealer-is-standing-him_146671-18392.jpg", imageAlt: "expert professional knowledge experience expertise"},
{
id: "2", title: "Fast & Transparent", description:
id: 2,
title: "Fast & Transparent", description:
"Efficient processes with clear timelines and transparent pricing. No hidden fees, no surprises—just honest, professional service.", imageSrc:
"http://img.b2bpic.net/free-photo/hr-manager-interviewing-woman-after-doing-background-checks_482257-115673.jpg", imageAlt: "transparent business communication honest dealing"},
{
id: "3", title: "Personalized Support", description:
id: 3,
title: "Personalized Support", description:
"Dedicated account managers who understand your unique business needs and provide customized solutions for success.", imageSrc:
"http://img.b2bpic.net/free-photo/man-working-call-center-with-headphones-computer_23-2149256095.jpg", imageAlt: "professional support team customer service"},
{
id: "4", title: "Prime Location", description:
id: 4,
title: "Prime Location", description:
"Based in Business Bay, Dubai's premier business hub, offering convenient access and positioning at the heart of UAE commerce.", imageSrc:
"http://img.b2bpic.net/free-photo/modern-skyscrapers-reflecting-water_23-2151991993.jpg", imageAlt: "Business Bay Dubai office location premium"},
]}
mediaAnimation="slide-up"
buttonAnimation="opacity"
/>
</div>
@@ -135,4 +144,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}