298 lines
18 KiB
TypeScript
298 lines
18 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
|
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
|
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
|
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
|
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
|
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
|
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import { BookOpen, Briefcase, CheckCircle, FileCheck, GraduationCap, MapPin, Phone, Plane, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="medium"
|
|
sizing="largeSizeMediumTitles"
|
|
background="circleGradient"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="light"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="JS Immigration"
|
|
navItems={[
|
|
{ name: "Services", id: "services" },
|
|
{ name: "Programs", id: "study-program" },
|
|
{ name: "Why Us", id: "why-choose" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardRotatedCarousel
|
|
title="Study or Work in Russia with Expert Visa Support"
|
|
description="Get admission, visa assistance, and travel guidance with JS Immigration. Your trusted partner for study, work, and visit visas."
|
|
tag="Professional Visa Services"
|
|
tagIcon={CheckCircle}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "floatingGradient" }}
|
|
buttons={[
|
|
{ text: "Apply Now", href: "#contact" },
|
|
{ text: "Contact Us", href: "#contact" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
carouselItems={[
|
|
{ id: "carousel-1", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-correcting-grammar-mistakes_23-2150171091.jpg", imageAlt: "international students studying Russia university" },
|
|
{ id: "carousel-2", imageSrc: "http://img.b2bpic.net/free-photo/friends-with-tablet-table_23-2147762299.jpg", imageAlt: "Russian university campus modern buildings" },
|
|
{ id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/men-working-with-heavy-objects_23-2148976296.jpg", imageAlt: "warehouse work logistics packing boxes" },
|
|
{ id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/side-view-male-chef-kitchen-preparing-vegetables_23-2148763178.jpg", imageAlt: "hotel service hospitality staff restaurant" },
|
|
{ id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-talking-street-after-class_1301-4572.jpg", imageAlt: "student visa application study abroad concept" },
|
|
{ id: "carousel-6", imageSrc: "http://img.b2bpic.net/free-photo/top-view-visa-application-arrangement_23-2149117825.jpg", imageAlt: "professional work visa employment permit" }
|
|
]}
|
|
autoPlay={true}
|
|
autoPlayInterval={4000}
|
|
ariaLabel="Hero section with carousel of visa services and study programs"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{ type: "text", content: "JS Immigration helps" },
|
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/commuters-waiting-waiting-area_107420-95861.jpg", alt: "professional immigration consultant meeting office" },
|
|
{ type: "text", content: "students and professionals achieve their dreams in Russia" }
|
|
]}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Learn More", href: "#services" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
ariaLabel="About JS Immigration consultancy services"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureBorderGlow
|
|
title="Our Services"
|
|
description="Comprehensive visa and immigration support tailored to your needs. From documentation to travel assistance, we handle it all."
|
|
tag="Complete Solutions"
|
|
tagIcon={Zap}
|
|
tagAnimation="slide-up"
|
|
features={[
|
|
{ icon: GraduationCap, title: "Study Visa for Russia", description: "University admission assistance and student visa processing with complete documentation support." },
|
|
{ icon: Briefcase, title: "Work Visa for Russia", description: "Professional employment visa guidance with job placement assistance and contract support." },
|
|
{ icon: Plane, title: "Tourist Visa", description: "Quick tourist visa processing for travel to Russia with travel planning assistance." },
|
|
{ icon: BookOpen, title: "University Admission", description: "Direct university partnerships and admission application support across top Russian institutions." },
|
|
{ icon: FileCheck, title: "Documentation Support", description: "Complete visa documentation preparation and verification from start to finish." },
|
|
{ icon: MapPin, title: "Travel Assistance", description: "Flight booking, accommodation arrangements, and complete travel guidance." }
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
buttons={[
|
|
{ text: "View All Services", href: "#services" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
ariaLabel="Features section highlighting visa and immigration services"
|
|
/>
|
|
</div>
|
|
|
|
<div id="study-program" data-section="study-program">
|
|
<PricingCardFive
|
|
title="Russia Study Program"
|
|
description="Complete study and work opportunity in Russia. Earn while you learn with our comprehensive program."
|
|
tag="Featured Program"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
plans={[
|
|
{
|
|
id: "study-work-program", tag: "Study + Work Visa Program", tagIcon: Sparkles,
|
|
price: "₹3,50,000", period: "approx", description: "15 months of study combined with work opportunity and comprehensive support from university to employment.", button: { text: "Apply Now", href: "#contact" },
|
|
featuresTitle: "What's Included:", features: [
|
|
"15 months study visa validity", "University admission and enrollment", "Full documentation provided by university", "Visa processing in 10 days", "Work permit during studies", "Earning potential: ₹90,000 - ₹1,20,000/month", "Complete travel and accommodation assistance", "24/7 student support in Russia"
|
|
]
|
|
}
|
|
]}
|
|
animationType="slide-up"
|
|
buttons={[
|
|
{ text: "Apply for Study Program", href: "#contact" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
ariaLabel="Russia study program pricing and details section"
|
|
/>
|
|
</div>
|
|
|
|
<div id="jobs" data-section="jobs">
|
|
<ProductCardFour
|
|
title="Job Opportunities in Russia"
|
|
description="Explore various employment opportunities across different sectors in Russia with competitive salaries and benefits."
|
|
tag="Career Growth"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
products={[
|
|
{
|
|
id: "job-warehouse", name: "Warehouse Operations", price: "₹50,000 - ₹70,000", variant: "Full-time, Entry Level", imageSrc: "http://img.b2bpic.net/free-photo/men-working-with-heavy-objects_23-2148976296.jpg", imageAlt: "warehouse work logistics packing boxes"
|
|
},
|
|
{
|
|
id: "job-packing", name: "Packing & Logistics", price: "₹55,000 - ₹75,000", variant: "Full-time, No Experience Required", imageSrc: "http://img.b2bpic.net/free-photo/men-working-with-heavy-objects_23-2148976296.jpg", imageAlt: "warehouse work logistics packing boxes"
|
|
},
|
|
{
|
|
id: "job-hospitality", name: "Hospitality Services", price: "₹60,000 - ₹85,000", variant: "Full-time, Hotel & Restaurant", imageSrc: "http://img.b2bpic.net/free-photo/side-view-male-chef-kitchen-preparing-vegetables_23-2148763178.jpg", imageAlt: "hotel service hospitality staff restaurant"
|
|
},
|
|
{
|
|
id: "job-cleaning", name: "Housekeeping & Cleaning", price: "₹45,000 - ₹65,000", variant: "Full-time, Flexible Hours", imageSrc: "http://img.b2bpic.net/free-photo/side-view-male-chef-kitchen-preparing-vegetables_23-2148763178.jpg", imageAlt: "hotel service hospitality staff restaurant"
|
|
},
|
|
{
|
|
id: "job-dishwasher", name: "Kitchen Staff", price: "₹50,000 - ₹70,000", variant: "Full-time, With Meals & Accommodation", imageSrc: "http://img.b2bpic.net/free-photo/side-view-male-chef-kitchen-preparing-vegetables_23-2148763178.jpg", imageAlt: "hotel service hospitality staff restaurant"
|
|
}
|
|
]}
|
|
buttons={[
|
|
{ text: "Explore All Jobs", href: "#contact" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
ariaLabel="Job opportunities section showing available positions in Russia"
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-choose" data-section="why-choose">
|
|
<MetricCardFourteen
|
|
title="Why Choose JS Immigration? We combine expertise, speed, and dedicated support to make your Russia dream a reality."
|
|
tag="Trusted Partner"
|
|
tagAnimation="slide-up"
|
|
metrics={[
|
|
{ id: "metric-trust", value: "500+", description: "Students successfully placed in Russian universities with visa approvals" },
|
|
{ id: "metric-speed", value: "10 Days", description: "Average visa processing time from application to approval" },
|
|
{ id: "metric-support", value: "24/7", description: "Round-the-clock support for all visa-related queries and emergencies" },
|
|
{ id: "metric-affordable", value: "Best", description: "Most affordable and transparent pricing compared to competitors" }
|
|
]}
|
|
metricsAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
ariaLabel="Key metrics highlighting JS Immigration achievements and reliability"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
title="Success Stories from Our Students"
|
|
description="Hear from students who achieved their dreams of studying and working in Russia with JS Immigration."
|
|
tag="Testimonials"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
testimonials={[
|
|
{
|
|
id: "testimonial-1", name: "Priya Sharma", role: "Computer Science Student", company: "Moscow State University", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-afro-male-student-holding-book-hand-leaning-against-wall_23-2148093168.jpg", imageAlt: "young student portrait professional photo"
|
|
},
|
|
{
|
|
id: "testimonial-2", name: "Rajesh Kumar", role: "Engineering Graduate", company: "Working in Moscow", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-successful-female-manager-enjoying-coffee-break_1262-15238.jpg", imageAlt: "student portrait young professional headshot"
|
|
},
|
|
{
|
|
id: "testimonial-3", name: "Anjali Patel", role: "Business Student", company: "St. Petersburg State University", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/teenage-student-smiling-with-book-head_23-2148208755.jpg", imageAlt: "professional student portrait headshot photo"
|
|
},
|
|
{
|
|
id: "testimonial-4", name: "Arjun Singh", role: "Medical Student", company: "Sechenov University", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-hispanic-female-executive-wearing-eyeglasses-standing-studio_662251-664.jpg", imageAlt: "student portrait professional photo headshot"
|
|
}
|
|
]}
|
|
kpiItems={[
|
|
{ value: "98%", label: "Visa Approval Rate" },
|
|
{ value: "500+", label: "Students Placed" },
|
|
{ value: "5★", label: "Average Rating" }
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
buttons={[
|
|
{ text: "Share Your Story", href: "#contact" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
ariaLabel="Testimonials section with client success stories and statistics"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactFaq
|
|
ctaTitle="Ready to Start Your Journey?"
|
|
ctaDescription="Get in touch with our visa experts today. We're here to guide you through every step of your visa application."
|
|
ctaButton={{ text: "Book Consultation", href: "#" }}
|
|
ctaIcon={Phone}
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
faqs={[
|
|
{ id: "faq-1", title: "What documents do I need for a Russian student visa?", content: "You'll need a valid passport, university admission letter, proof of financial support, medical certificate, and migration card application. We help prepare and verify all documents to ensure quick approval." },
|
|
{ id: "faq-2", title: "How long does the visa processing take?", content: "Student visa processing typically takes 10 days from application submission. Work visas may take 15-20 days. We expedite the process to get you approved faster with our direct university partnerships." },
|
|
{ id: "faq-3", title: "Can I work while studying in Russia?", content: "Yes! Student visa holders can work up to 40 hours per week during academic breaks and up to 20 hours during study periods. Our clients earn ₹90,000 - ₹1,20,000 per month on average." },
|
|
{ id: "faq-4", title: "What are the eligibility requirements?", content: "Basic requirements include being 18+ years old, having valid education credentials, financial capability, and a clean background check. Specific requirements vary by visa type. Contact us for personalized assessment." },
|
|
{ id: "faq-5", title: "Do you provide accommodation assistance?", content: "Yes, we arrange accommodation in university hostels or private apartments based on your preference and budget. We also assist with flight bookings and airport pickup." },
|
|
{ id: "faq-6", title: "What's your success rate?", content: "We have a 98% visa approval rate with over 500 students successfully placed in Russian universities and jobs. Our team's expertise and direct university partnerships ensure higher approval chances." }
|
|
]}
|
|
accordionAnimationType="smooth"
|
|
showCard={true}
|
|
ariaLabel="Contact section with CTA and FAQ accordion"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="JS Immigration"
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Study Visa", href: "#services" },
|
|
{ label: "Work Visa", href: "#services" },
|
|
{ label: "Tourist Visa", href: "#services" },
|
|
{ label: "University Admission", href: "#services" }
|
|
]
|
|
},
|
|
{
|
|
title: "Programs", items: [
|
|
{ label: "Study + Work", href: "#study-program" },
|
|
{ label: "Job Opportunities", href: "#jobs" },
|
|
{ label: "Why Choose Us", href: "#why-choose" },
|
|
{ label: "Testimonials", href: "#testimonials" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Contact Us", href: "#contact" },
|
|
{ label: "Instagram", href: "https://instagram.com/j_s.immigration" },
|
|
{ label: "Privacy Policy", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{ label: "FAQ", href: "#contact" },
|
|
{ label: "Documentation Help", href: "#services" },
|
|
{ label: "Visa Updates", href: "#" },
|
|
{ label: "Contact Support", href: "#contact" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2025 JS Immigration. All rights reserved. Your trusted partner for study, work & visit visas."
|
|
ariaLabel="Site footer with navigation and contact information"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |