Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e207a6bcbf | |||
| 439f755a62 |
142
src/app/page.tsx
142
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
|||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import { Award, CheckCircle, Linkedin, Smile, Twitter } from "lucide-react";
|
import { Award, CheckCircle, Linkedin, Smile, Twitter, Plane, BookOpen, UserCheck, Package } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,14 +32,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "About", id: "about" },
|
||||||
name: "About", id: "about"},
|
{ name: "Services", id: "features" },
|
||||||
{
|
{ name: "Packages", id: "products" },
|
||||||
name: "Services", id: "features"},
|
{ name: "Contact", id: "contact" },
|
||||||
{
|
|
||||||
name: "Products", id: "products"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="Aman Enterprises"
|
brandName="Aman Enterprises"
|
||||||
/>
|
/>
|
||||||
@@ -48,26 +44,15 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<HeroCarouselLogo
|
||||||
logoText="Aman Enterprises"
|
logoText="Aman Enterprises"
|
||||||
description="Your trusted partner in professional enterprise solutions, delivering excellence and innovation in every project we undertake."
|
description="Your trusted travel partner. We make your journeys easy with expert visa assistance, flight ticketing, and curated tour packages."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Explore Packages", href: "#products" },
|
||||||
text: "Learn More", href: "#about"},
|
{ text: "Contact Us", href: "#contact" },
|
||||||
{
|
|
||||||
text: "Contact Us", href: "#contact"},
|
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/airplane-taking-off-sunset_1203-1250.jpg", imageAlt: "Travel adventures" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-discussing-interesting-idea_1098-1867.jpg", imageAlt: "Business corporate office"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/tourist-walking-old-city_1150-13670.jpg", imageAlt: "Exploring new destinations" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/passport-plane-tickets-table_23-2148196144.jpg", imageAlt: "Visa and flight services" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/team-leader-discussing-charts-graphs_1098-1838.jpg", imageAlt: "Professional business consultation"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/picture-modern-skyscrapers-with-blue-windows-parking-area-blue-sky_181624-7105.jpg", imageAlt: "Corporate modern building"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chief-analyst-holding-meeting-presentation-team-economists-manager-showing-digital-interactive-whiteboard-with-growth-analysis-charts-statistics-data-diverse-people-working-broadroom_482257-13904.jpg", imageAlt: "Business strategy meeting"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-modern-corporate-high-end-office-space-designed-ceo_482257-122705.jpg", imageAlt: "Global trade enterprise"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphics-arrangement_23-2148991190.jpg", imageAlt: "Teamwork office environment"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -75,12 +60,12 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextSplitAbout
|
<TextSplitAbout
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="Our Commitment to Excellence"
|
title="Your Trusted Travel Partner"
|
||||||
description={[
|
description={[
|
||||||
"Aman Enterprises is dedicated to providing superior business solutions. We bridge the gap between quality and efficiency, ensuring our clients achieve sustainable growth through our specialized services.", "With a focus on integrity and innovation, we have established ourselves as a reliable pillar for enterprises seeking consistent success and operational excellence."]}
|
"At Aman Enterprises, we believe every journey should be seamless and stress-free. Whether you are traveling for business or leisure, we handle the logistics so you can focus on the experience.", "From passport services to complex visa applications and bespoke tour packages, our dedicated team ensures your travel plans are executed with precision and care."
|
||||||
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Learn More", href: "#features" },
|
||||||
text: "View Products", href: "#products"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -91,15 +76,12 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ id: "f1", title: "Visa Assistance", description: "End-to-end support for your visa application process.", tag: "Visa", imageSrc: "http://img.b2bpic.net/free-photo/man-filling-out-paperwork_1098-1867.jpg" },
|
||||||
id: "f1", title: "Market Expertise", description: "Years of experience understanding industry trends and business demands.", tag: "Expertise", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-with-clipboard_1098-602.jpg", imageAlt: "Market expertise illustration"},
|
{ id: "f2", title: "Flight Tickets", description: "Competitive rates for domestic and international flights.", tag: "Flights", imageSrc: "http://img.b2bpic.net/free-photo/airplane-seat_1098-283.jpg" },
|
||||||
{
|
{ id: "f3", title: "Tour Packages", description: "Custom-made itineraries for unforgettable vacations.", tag: "Tours", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape_1203-2415.jpg" },
|
||||||
id: "f2", title: "Operational Quality", description: "Top-tier quality controls ensuring every project meets global standards.", tag: "Quality", imageSrc: "http://img.b2bpic.net/free-photo/business-marketing-planning-trategy-graph_53876-121052.jpg", imageAlt: "Quality control concept"},
|
|
||||||
{
|
|
||||||
id: "f3", title: "Customer Centric", description: "Personalized service packages tailored specifically to your business needs.", tag: "Service", imageSrc: "http://img.b2bpic.net/free-photo/people-standing-office-holding-hands-together_23-2147650947.jpg", imageAlt: "Customer support illustration"},
|
|
||||||
]}
|
]}
|
||||||
title="Why Partner With Us?"
|
title="Our Services"
|
||||||
description="We offer a suite of specialized services designed to streamline your business operations and maximize potential."
|
description="We offer comprehensive travel solutions to take the worry out of your next trip."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -110,27 +92,13 @@ export default function LandingPage() {
|
|||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "p1", brand: "Aman", name: "European Getaway", price: "$1,499", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/eiffel-tower_1203-1250.jpg" },
|
||||||
id: "p1", brand: "Aman", name: "Basic Supply Pack", price: "$499", rating: 5,
|
{ id: "p2", brand: "Aman", name: "Asian Heritage Tour", price: "$999", rating: 5, reviewCount: "84", imageSrc: "http://img.b2bpic.net/free-photo/temple-view_1203-1345.jpg" },
|
||||||
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/man-working-carboard-factory_1303-22911.jpg"},
|
{ id: "p3", brand: "Aman", name: "Business Visa Support", price: "$299", rating: 4, reviewCount: "56", imageSrc: "http://img.b2bpic.net/free-photo/passport-check_1098-123.jpg" },
|
||||||
{
|
{ id: "p4", brand: "Aman", name: "Island Escape", price: "$1,199", rating: 5, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/tropical-beach_1098-212.jpg" },
|
||||||
id: "p2", brand: "Aman", name: "Enterprise Pro Kit", price: "$1,299", rating: 5,
|
|
||||||
reviewCount: "84", imageSrc: "http://img.b2bpic.net/free-photo/i-m-posting-this-picture-business-social-media-young-man-taking-picture-thank-you-note-package-customer_662251-2156.jpg"},
|
|
||||||
{
|
|
||||||
id: "p3", brand: "Aman", name: "Industrial Hardware", price: "$799", rating: 4,
|
|
||||||
reviewCount: "56", imageSrc: "http://img.b2bpic.net/free-photo/rack-with-dumbbells_1203-1700.jpg"},
|
|
||||||
{
|
|
||||||
id: "p4", brand: "Aman", name: "Utility Solution", price: "$349", rating: 5,
|
|
||||||
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-her-workshop-creative-invention_23-2149067189.jpg"},
|
|
||||||
{
|
|
||||||
id: "p5", brand: "Aman", name: "Advanced Supply Unit", price: "$1,899", rating: 5,
|
|
||||||
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-vector/tech-repair-template-design_23-2151092280.jpg"},
|
|
||||||
{
|
|
||||||
id: "p6", brand: "Aman", name: "Strategic Asset", price: "$2,199", rating: 5,
|
|
||||||
reviewCount: "38", imageSrc: "http://img.b2bpic.net/free-psd/construction-project-instagram-stories_23-2151219477.jpg"},
|
|
||||||
]}
|
]}
|
||||||
title="Industrial Solutions"
|
title="Featured Packages"
|
||||||
description="Explore our comprehensive range of high-quality products built for commercial success."
|
description="Discover our most popular travel experiences and professional services."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -140,18 +108,12 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ id: "m1", title: "Visas Processed", value: "5,000+", icon: UserCheck },
|
||||||
id: "m1", title: "Projects Completed", value: "1,500+", icon: CheckCircle,
|
{ id: "m2", title: "Flights Booked", value: "12,000+", icon: Plane },
|
||||||
},
|
{ id: "m3", title: "Satisfied Travelers", value: "8,500+", icon: Smile },
|
||||||
{
|
|
||||||
id: "m2", title: "Happy Clients", value: "850+", icon: Smile,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "m3", title: "Years of Excellence", value: "20+", icon: Award,
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Proven Track Record"
|
title="Our Impact"
|
||||||
description="Our numbers speak for themselves, showcasing consistent reliability and growth over the years."
|
description="Helping thousands of travelers reach their destinations with ease every year."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -160,19 +122,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", title: "Seamless Travel", quote: "Aman Enterprises handled my complex visa application perfectly. Highly recommended!", name: "Jane Doe", role: "Frequent Traveler" },
|
||||||
id: "1", title: "Excellent Service", quote: "Reliable and efficient, Aman Enterprises helped streamline our supply chain effectively.", name: "Sarah Johnson", role: "CEO, TechGroup", imageSrc: "http://img.b2bpic.net/free-photo/happy-professional-partners-posing-photo-smiling-looking-camera-african-american-successful-businessman-caucasian-businesswoman-taking-selfie-teamwork-business-concept_74855-7442.jpg"},
|
{ id: "2", title: "Great Packages", quote: "The tour package to Europe was perfectly planned and stress-free.", name: "John Smith", role: "Vacationer" },
|
||||||
{
|
|
||||||
id: "2", title: "Strategic Partner", quote: "Their market insight and product quality are unmatched in the enterprise sector.", name: "Michael Chen", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-smiling-boy-cafe_23-2148436234.jpg"},
|
|
||||||
{
|
|
||||||
id: "3", title: "Top Quality", quote: "A truly professional team that consistently delivers on all promises made.", name: "Emily Rodriguez", role: "Director, Global Corp", imageSrc: "http://img.b2bpic.net/free-photo/crazy-businessman-worried-expression_1194-3826.jpg"},
|
|
||||||
{
|
|
||||||
id: "4", title: "Highly Recommended", quote: "Efficient project management and top-quality assets made our collaboration a huge success.", name: "David Kim", role: "Product Lead", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg"},
|
|
||||||
{
|
|
||||||
id: "5", title: "Consistency", quote: "They are the backbone of our operational requirements in the region.", name: "Rachel Smith", role: "Logistics Lead", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-man-holding-smart-phone_23-2147935571.jpg"},
|
|
||||||
]}
|
]}
|
||||||
title="Client Success Stories"
|
title="Client Success Stories"
|
||||||
description="Hear what our esteemed partners have to say about working with Aman Enterprises."
|
description="Read about how we've made journeys memorable for our clients."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -181,27 +135,23 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "q1", title: "How do I start my visa process?", content: "Contact our office for a document checklist and initial consultation." },
|
||||||
id: "q1", title: "How can I start a partnership?", content: "Simply contact our sales team through the contact form or give us a call to schedule a consultation."},
|
{ id: "q2", title: "Do you offer group tour discounts?", content: "Yes, we provide special packages and rates for group travelers." },
|
||||||
{
|
{ id: "q3", title: "Can I customize my tour itinerary?", content: "Absolutely! We pride ourselves on creating bespoke travel experiences." },
|
||||||
id: "q2", title: "Do you offer international shipping?", content: "Yes, we provide global logistics support for our enterprise product lines."},
|
|
||||||
{
|
|
||||||
id: "q3", title: "Is custom support included?", content: "We offer dedicated account managers for all our enterprise-level client packages."},
|
|
||||||
]}
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Common questions regarding our services, products, and partnership process."
|
description="Need help planning your next journey? We've got answers."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{ variant: "animated-grid" }}
|
||||||
variant: "animated-grid"}}
|
tag="Contact Us"
|
||||||
tag="Let's Talk"
|
title="Start Your Journey"
|
||||||
title="Ready to Grow With Us?"
|
description="Get in touch with us today and let's start planning your next unforgettable trip."
|
||||||
description="Send us your details and a team member will reach out to discuss your requirements shortly."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -210,12 +160,8 @@ export default function LandingPage() {
|
|||||||
logoText="Aman Enterprises"
|
logoText="Aman Enterprises"
|
||||||
copyrightText="© 2025 | Aman Enterprises. All rights reserved."
|
copyrightText="© 2025 | Aman Enterprises. All rights reserved."
|
||||||
socialLinks={[
|
socialLinks={[
|
||||||
{
|
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
|
||||||
icon: Twitter,
|
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
||||||
href: "#", ariaLabel: "Twitter"},
|
|
||||||
{
|
|
||||||
icon: Linkedin,
|
|
||||||
href: "#", ariaLabel: "LinkedIn"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user