Merge version_1 into main #2
@@ -8,169 +8,65 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Study Visa",
|
||||
id: "/study-visa",
|
||||
},
|
||||
{
|
||||
name: "Work Visa",
|
||||
id: "/work-visa",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="JZ Travel Agency is here to help you. Visit our offices or contact us digitally."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Office Locations"
|
||||
description="Find us near you."
|
||||
metrics={[
|
||||
{
|
||||
id: "l1",
|
||||
value: "Dubai",
|
||||
title: "UAE HQ",
|
||||
description: "Main office.",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
id: "l2",
|
||||
value: "London",
|
||||
title: "UK Branch",
|
||||
description: "Support team.",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
id: "l3",
|
||||
value: "Riyadh",
|
||||
title: "KSA Branch",
|
||||
description: "Umrah services.",
|
||||
icon: MapPin,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Dubai UAE",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Qatar",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Malaysia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Indonesia",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Oman",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Saudi Arabia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "UK",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Italy",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Poland",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Vietnam",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Azerbaijan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Nepal",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Kazakhstan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "China",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Morocco",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Japan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study Visa", id: "/study-visa" },
|
||||
{ name: "Work Visa", id: "/work-visa" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
text="JZ Travel Agency is here to help you. Visit our offices or contact us digitally."
|
||||
/>
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Office Locations"
|
||||
description="Find us near you."
|
||||
metrics={[
|
||||
{ id: "l1", value: "Dubai", title: "UAE HQ", description: "Main office.", icon: MapPin },
|
||||
{ id: "l2", value: "London", title: "UK Branch", description: "Support team.", icon: MapPin },
|
||||
{ id: "l3", value: "Riyadh", title: "KSA Branch", description: "Umrah services.", icon: MapPin },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Dubai UAE", href: "/contact" }, { label: "Qatar", href: "/contact" }, { label: "Malaysia", href: "/contact" }, { label: "Indonesia", href: "/contact" }] },
|
||||
{ items: [{ label: "Oman", href: "/contact" }, { label: "Saudi Arabia", href: "/contact" }, { label: "UK", href: "/contact" }, { label: "Italy", href: "/contact" }] },
|
||||
{ items: [{ label: "Poland", href: "/contact" }, { label: "Vietnam", href: "/contact" }, { label: "Azerbaijan", href: "/contact" }, { label: "Nepal", href: "/contact" }] },
|
||||
{ items: [{ label: "Kazakhstan", href: "/contact" }, { label: "China", href: "/contact" }, { label: "Morocco", href: "/contact" }, { label: "Japan", href: "/contact" }] },
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
403
src/app/page.tsx
403
src/app/page.tsx
@@ -17,303 +17,116 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Study Visa",
|
||||
id: "/study-visa",
|
||||
},
|
||||
{
|
||||
name: "Work Visa",
|
||||
id: "/work-visa",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="JZ Travel Agency"
|
||||
description="Your global gateway for study, work, and tourism visas. Professional handling, expert guidance."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg?_wi=1"
|
||||
imageAlt="Travel Agency Hero"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Our Services",
|
||||
href: "/study-visa",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Study Visa",
|
||||
description: "Expert assistance for university applications and student visas worldwide.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg?_wi=1",
|
||||
imageAlt: "Study Visa",
|
||||
},
|
||||
{
|
||||
title: "Work Visa",
|
||||
description: "Helping professionals land opportunities across 20+ countries.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg?_wi=1",
|
||||
imageAlt: "Work Visa",
|
||||
},
|
||||
{
|
||||
title: "Umrah Services",
|
||||
description: "Comprehensive packages for your spiritual journey.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg?_wi=1",
|
||||
imageAlt: "Umrah",
|
||||
},
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Simplifying your travel and immigration goals with precision and care."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Client Journeys"
|
||||
description="Stories from travelers who trusted us."
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Ali Hassan",
|
||||
handle: "@alihassan",
|
||||
testimonial: "Excellent service for my UK study visa. Smooth process!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/passport-white-background_1308-25974.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sara Miller",
|
||||
handle: "@saramiller",
|
||||
testimonial: "The Umrah package was perfectly organized and stress-free.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/backpack-set-with-other-vintage-elements-flat-design_23-2147648162.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "John Doe",
|
||||
handle: "@johndoe",
|
||||
testimonial: "Got my work visa for Poland quickly. Highly recommend JZ Travel.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-using-tablet-outdoors_23-2150747667.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Priya Singh",
|
||||
handle: "@priyasingh",
|
||||
testimonial: "Very professional and responsive team.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/passport-banknotes-wristwatch-coins-notepad-map_23-2147837078.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Kenji Sato",
|
||||
handle: "@kenjisato",
|
||||
testimonial: "Smooth document processing for my student exchange.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-looking-stamp_23-2147732584.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries about our travel visa and immigration support services."
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gadgets-with-passport-sunglasses_23-2147732952.jpg"
|
||||
imageAlt="FAQ Section"
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "How long does a visa take?",
|
||||
content: "Processing times vary by destination, typically between 15-45 days.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Do you handle scholarships?",
|
||||
content: "We provide advisory on finding and applying for university scholarships.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "What documents are needed?",
|
||||
content: "A valid passport, recent photos, and financial proof are usually required.",
|
||||
},
|
||||
{
|
||||
id: "q4",
|
||||
title: "Are Umrah packages all-inclusive?",
|
||||
content: "Yes, our packages cover flights, visa, and accommodation.",
|
||||
},
|
||||
{
|
||||
id: "q5",
|
||||
title: "Can I visit your office?",
|
||||
content: "We welcome you to our local branches for a consultation.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact"
|
||||
description="Celebrating milestones with our clients."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "1000+",
|
||||
title: "Visas Issued",
|
||||
description: "Successfully processed worldwide.",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "25+",
|
||||
title: "Destinations",
|
||||
description: "Countries we serve.",
|
||||
icon: Globe,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "98%",
|
||||
title: "Success Rate",
|
||||
description: "On application approvals.",
|
||||
icon: ThumbsUp,
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
value: "15",
|
||||
title: "Years Experience",
|
||||
description: "In travel consulting.",
|
||||
icon: Clock,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Dubai UAE",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Qatar",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Malaysia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Indonesia",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Oman",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Saudi Arabia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "UK",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Italy",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Poland",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Vietnam",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Azerbaijan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Nepal",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Kazakhstan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "China",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Morocco",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Japan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study Visa", id: "/study-visa" },
|
||||
{ name: "Work Visa", id: "/work-visa" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="JZ Travel Agency"
|
||||
description="Your global gateway for study, work, and tourism visas. Professional handling, expert guidance."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg"
|
||||
imageAlt="Travel Agency Hero"
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Our Services", href: "/study-visa" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Study Visa", description: "Expert assistance for university applications and student visas worldwide.", imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg", imageAlt: "Study Visa" },
|
||||
{ title: "Work Visa", description: "Helping professionals land opportunities across 20+ countries.", imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg", imageAlt: "Work Visa" },
|
||||
{ title: "Umrah Services", description: "Comprehensive packages for your spiritual journey.", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg", imageAlt: "Umrah" },
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Simplifying your travel and immigration goals with precision and care."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Client Journeys"
|
||||
description="Stories from travelers who trusted us."
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Ali Hassan", handle: "@alihassan", testimonial: "Excellent service for my UK study visa. Smooth process!", rating: 5, imageSrc: "http://img.b2bpic.net/free-vector/passport-white-background_1308-25974.jpg" },
|
||||
{ id: "t2", name: "Sara Miller", handle: "@saramiller", testimonial: "The Umrah package was perfectly organized and stress-free.", rating: 5, imageSrc: "http://img.b2bpic.net/free-vector/backpack-set-with-other-vintage-elements-flat-design_23-2147648162.jpg" },
|
||||
{ id: "t3", name: "John Doe", handle: "@johndoe", testimonial: "Got my work visa for Poland quickly. Highly recommend JZ Travel.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-using-tablet-outdoors_23-2150747667.jpg" },
|
||||
{ id: "t4", name: "Priya Singh", handle: "@priyasingh", testimonial: "Very professional and responsive team.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/passport-banknotes-wristwatch-coins-notepad-map_23-2147837078.jpg" },
|
||||
{ id: "t5", name: "Kenji Sato", handle: "@kenjisato", testimonial: "Smooth document processing for my student exchange.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/person-looking-stamp_23-2147732584.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries about our travel visa and immigration support services."
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gadgets-with-passport-sunglasses_23-2147732952.jpg"
|
||||
imageAlt="FAQ Section"
|
||||
faqs={[
|
||||
{ id: "q1", title: "How long does a visa take?", content: "Processing times vary by destination, typically between 15-45 days." },
|
||||
{ id: "q2", title: "Do you handle scholarships?", content: "We provide advisory on finding and applying for university scholarships." },
|
||||
{ id: "q3", title: "What documents are needed?", content: "A valid passport, recent photos, and financial proof are usually required." },
|
||||
{ id: "q4", title: "Are Umrah packages all-inclusive?", content: "Yes, our packages cover flights, visa, and accommodation." },
|
||||
{ id: "q5", title: "Can I visit your office?", content: "We welcome you to our local branches for a consultation." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact"
|
||||
description="Celebrating milestones with our clients."
|
||||
metrics={[
|
||||
{ id: "m1", value: "1000+", title: "Visas Issued", description: "Successfully processed worldwide.", icon: CheckCircle },
|
||||
{ id: "m2", value: "25+", title: "Destinations", description: "Countries we serve.", icon: Globe },
|
||||
{ id: "m3", value: "98%", title: "Success Rate", description: "On application approvals.", icon: ThumbsUp },
|
||||
{ id: "m4", value: "15", title: "Years Experience", description: "In travel consulting.", icon: Clock },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Dubai UAE", href: "/contact" }, { label: "Qatar", href: "/contact" }, { label: "Malaysia", href: "/contact" }, { label: "Indonesia", href: "/contact" }] },
|
||||
{ items: [{ label: "Oman", href: "/contact" }, { label: "Saudi Arabia", href: "/contact" }, { label: "UK", href: "/contact" }, { label: "Italy", href: "/contact" }] },
|
||||
{ items: [{ label: "Poland", href: "/contact" }, { label: "Vietnam", href: "/contact" }, { label: "Azerbaijan", href: "/contact" }, { label: "Nepal", href: "/contact" }] },
|
||||
{ items: [{ label: "Kazakhstan", href: "/contact" }, { label: "China", href: "/contact" }, { label: "Morocco", href: "/contact" }, { label: "Japan", href: "/contact" }] },
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -7,220 +7,76 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function StudyVisaPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Study Visa",
|
||||
id: "/study-visa",
|
||||
},
|
||||
{
|
||||
name: "Work Visa",
|
||||
id: "/work-visa",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="study-list" data-section="study-list">
|
||||
<ProductCardFour
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "UK",
|
||||
price: "Expert Support",
|
||||
variant: "University Focus",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/passport-with-airplane-outline-flat_78370-7161.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Japan",
|
||||
price: "Language/Degree",
|
||||
variant: "Student Friendly",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117803.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Italy",
|
||||
price: "Scholarships",
|
||||
variant: "Cultural Hub",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/travel-elements-collection-flat-style_23-2147772686.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Poland",
|
||||
price: "Affordable",
|
||||
variant: "Tech Careers",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/world-map-background-with-variety-travel-objects_23-2147604714.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "China",
|
||||
price: "Fast Growth",
|
||||
variant: "Research Focused",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-composition-with-american-flag_23-2149117788.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Turkey",
|
||||
price: "Bridge East-West",
|
||||
variant: "Modern Campus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tickets-little-plane_52683-136438.jpg",
|
||||
},
|
||||
]}
|
||||
title="Study Visa Destinations"
|
||||
description="Explore top countries to advance your studies."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Steps to Study"
|
||||
description="Our application process."
|
||||
features={[
|
||||
{
|
||||
title: "Check Eligibility",
|
||||
description: "Free initial assessment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/airplane-runway-night_23-2151989560.jpg?_wi=1",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Gather Documents",
|
||||
description: "We guide your paperwork.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg?_wi=2",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Apply",
|
||||
description: "Submit to the university.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg?_wi=2",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Visa Processing",
|
||||
description: "Embassy interviews.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg?_wi=2",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Departure",
|
||||
description: "Ready to fly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg?_wi=2",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Dubai UAE",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Qatar",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Malaysia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Indonesia",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Oman",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Saudi Arabia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "UK",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Italy",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Poland",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Vietnam",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Azerbaijan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Nepal",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Kazakhstan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "China",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Morocco",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Japan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study Visa", id: "/study-visa" },
|
||||
{ name: "Work Visa", id: "/work-visa" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="study-list" data-section="study-list">
|
||||
<ProductCardFour
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{ id: "1", name: "UK", price: "Expert Support", variant: "University Focus", imageSrc: "http://img.b2bpic.net/free-vector/passport-with-airplane-outline-flat_78370-7161.jpg" },
|
||||
{ id: "2", name: "Japan", price: "Language/Degree", variant: "Student Friendly", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117803.jpg" },
|
||||
{ id: "3", name: "Italy", price: "Scholarships", variant: "Cultural Hub", imageSrc: "http://img.b2bpic.net/free-vector/travel-elements-collection-flat-style_23-2147772686.jpg" },
|
||||
{ id: "4", name: "Poland", price: "Affordable", variant: "Tech Careers", imageSrc: "http://img.b2bpic.net/free-photo/world-map-background-with-variety-travel-objects_23-2147604714.jpg" },
|
||||
{ id: "5", name: "China", price: "Fast Growth", variant: "Research Focused", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-composition-with-american-flag_23-2149117788.jpg" },
|
||||
{ id: "6", name: "Turkey", price: "Bridge East-West", variant: "Modern Campus", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tickets-little-plane_52683-136438.jpg" },
|
||||
]}
|
||||
title="Study Visa Destinations"
|
||||
description="Explore top countries to advance your studies."
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Steps to Study"
|
||||
description="Our application process."
|
||||
features={[
|
||||
{ title: "Check Eligibility", description: "Free initial assessment.", imageSrc: "http://img.b2bpic.net/free-photo/airplane-runway-night_23-2151989560.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Gather Documents", description: "We guide your paperwork.", imageSrc: "http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Apply", description: "Submit to the university.", imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Visa Processing", description: "Embassy interviews.", imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Departure", description: "Ready to fly.", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg", imageAlt: "Airplane on runway at night" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Dubai UAE", href: "/contact" }, { label: "Qatar", href: "/contact" }, { label: "Malaysia", href: "/contact" }, { label: "Indonesia", href: "/contact" }] },
|
||||
{ items: [{ label: "Oman", href: "/contact" }, { label: "Saudi Arabia", href: "/contact" }, { label: "UK", href: "/contact" }, { label: "Italy", href: "/contact" }] },
|
||||
{ items: [{ label: "Poland", href: "/contact" }, { label: "Vietnam", href: "/contact" }, { label: "Azerbaijan", href: "/contact" }, { label: "Nepal", href: "/contact" }] },
|
||||
{ items: [{ label: "Kazakhstan", href: "/contact" }, { label: "China", href: "/contact" }, { label: "Morocco", href: "/contact" }, { label: "Japan", href: "/contact" }] },
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -7,176 +7,65 @@ import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function WorkVisaPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Study Visa",
|
||||
id: "/study-visa",
|
||||
},
|
||||
{
|
||||
name: "Work Visa",
|
||||
id: "/work-visa",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Work Abroad Paths"
|
||||
description="Opportunities await."
|
||||
features={[
|
||||
{
|
||||
title: "Job Search",
|
||||
description: "Access to global listings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/airplane-runway-night_23-2151989560.jpg?_wi=2",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Legalization",
|
||||
description: "Translation and attestation.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg?_wi=3",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Interview Prep",
|
||||
description: "Coaching by pros.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg?_wi=3",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Relocation Advice",
|
||||
description: "Settling in smoothly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg?_wi=3",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
{
|
||||
title: "Work Permits",
|
||||
description: "Sponsorship guidance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg?_wi=3",
|
||||
imageAlt: "Airplane on runway at night",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="Need professional advice on work visas? Speak with our experts today."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Dubai UAE",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Qatar",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Malaysia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Indonesia",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Oman",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Saudi Arabia",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "UK",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Italy",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Poland",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Vietnam",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Azerbaijan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Nepal",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Kazakhstan",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "China",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Morocco",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Japan",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study Visa", id: "/study-visa" },
|
||||
{ name: "Work Visa", id: "/work-visa" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Work Abroad Paths"
|
||||
description="Opportunities await."
|
||||
features={[
|
||||
{ title: "Job Search", description: "Access to global listings.", imageSrc: "http://img.b2bpic.net/free-photo/airplane-runway-night_23-2151989560.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Legalization", description: "Translation and attestation.", imageSrc: "http://img.b2bpic.net/free-photo/airplane-flying-clouds-sunset-light_335224-1386.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Interview Prep", description: "Coaching by pros.", imageSrc: "http://img.b2bpic.net/free-photo/travel-again-concept-arrangement_23-2149064600.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Relocation Advice", description: "Settling in smoothly.", imageSrc: "http://img.b2bpic.net/free-photo/travel-composition-with-clothing-travel-equipment_7939-3242.jpg", imageAlt: "Airplane on runway at night" },
|
||||
{ title: "Work Permits", description: "Sponsorship guidance.", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-immigration-concept_53876-127772.jpg", imageAlt: "Airplane on runway at night" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
text="Need professional advice on work visas? Speak with our experts today."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Dubai UAE", href: "/contact" }, { label: "Qatar", href: "/contact" }, { label: "Malaysia", href: "/contact" }, { label: "Indonesia", href: "/contact" }] },
|
||||
{ items: [{ label: "Oman", href: "/contact" }, { label: "Saudi Arabia", href: "/contact" }, { label: "UK", href: "/contact" }, { label: "Italy", href: "/contact" }] },
|
||||
{ items: [{ label: "Poland", href: "/contact" }, { label: "Vietnam", href: "/contact" }, { label: "Azerbaijan", href: "/contact" }, { label: "Nepal", href: "/contact" }] },
|
||||
{ items: [{ label: "Kazakhstan", href: "/contact" }, { label: "China", href: "/contact" }, { label: "Morocco", href: "/contact" }, { label: "Japan", href: "/contact" }] },
|
||||
]}
|
||||
logoText="JZ Travel"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user