Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 22a134d825 | |||
| 655490230d | |||
| 5dd508842f | |||
| 6f2407a521 | |||
| 1b07b6ce18 | |||
| 0967936555 | |||
| 8c120c7dbf | |||
| 9b0bb237b7 |
@@ -1,70 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
|
||||||
variable: "--font-source-sans-3",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "SkyWings - Book Flights & Travel with Confidence",
|
title: "SkyWings - Luxury Air Travel", description: "Experience luxury air travel with SkyWings. Discover unbeatable fares, premium comfort, and seamless booking for your next adventure."
|
||||||
description: "Book affordable flights to 150+ destinations. Enjoy premium comfort, flexible fares, and 24/7 support with SkyWings airline.",
|
|
||||||
keywords: "airlines, flight booking, cheap flights, travel, destinations, booking platform, air travel",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "SkyWings - Fly Beyond Boundaries",
|
|
||||||
description: "Experience luxury air travel with unbeatable fares and premium comfort. Book your flight today.",
|
|
||||||
url: "https://skywings.com",
|
|
||||||
siteName: "SkyWings",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/luxury-design-private-jet-flying-clouds-ai-generated-image_511042-1764.jpg",
|
|
||||||
alt: "SkyWings aircraft",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "SkyWings Airlines - Book Your Flight",
|
|
||||||
description: "Fly to 150+ destinations with premium service and competitive prices.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/luxury-design-private-jet-flying-clouds-ai-generated-image_511042-1764.jpg"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1432,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ export default function HomePage() {
|
|||||||
tagIcon={Plane}
|
tagIcon={Plane}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Search Flights", href: "/booking" },
|
{ text: "Book Your Flight Now", href: "/booking" },
|
||||||
{ text: "Learn More", href: "about" },
|
{ text: "Learn More", href: "about" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -83,11 +83,14 @@ export default function HomePage() {
|
|||||||
avatarText="Trusted by 2M+ Travelers"
|
avatarText="Trusted by 2M+ Travelers"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 1"},
|
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 1"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 2"},
|
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 3"},
|
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Traveler 3"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -135,17 +138,20 @@ export default function HomePage() {
|
|||||||
id: 1,
|
id: 1,
|
||||||
title: "Tropical Paradise", description:
|
title: "Tropical Paradise", description:
|
||||||
"Escape to pristine beaches and crystal waters. Experience island living at its finest.", imageSrc:
|
"Escape to pristine beaches and crystal waters. Experience island living at its finest.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/stunning-woman-white-shirt-stands-palm_1304-5410.jpg", imageAlt: "Tropical beach destination"},
|
"http://img.b2bpic.net/free-photo/stunning-woman-white-shirt-stands-palm_1304-5410.jpg", imageAlt: "Tropical beach destination"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Urban Exploration", description:
|
title: "Urban Exploration", description:
|
||||||
"Discover iconic cities with vibrant culture, cuisine, and attractions. City lights await.", imageSrc:
|
"Discover iconic cities with vibrant culture, cuisine, and attractions. City lights await.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/vancouver-downtown-architecture-boat-with-water-reflections-dusk-panorama_649448-2636.jpg", imageAlt: "Modern city skyline"},
|
"http://img.b2bpic.net/free-photo/vancouver-downtown-architecture-boat-with-water-reflections-dusk-panorama_649448-2636.jpg", imageAlt: "Modern city skyline"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Mountain Retreat", description:
|
title: "Mountain Retreat", description:
|
||||||
"Adventure awaits in majestic peaks and scenic valleys. Breathe in fresh alpine air.", imageSrc:
|
"Adventure awaits in majestic peaks and scenic valleys. Breathe in fresh alpine air.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/young-tourist-hiking-mountains-piedmont-italy-sunny-day_181624-52402.jpg", imageAlt: "Beautiful mountain landscape"},
|
"http://img.b2bpic.net/free-photo/young-tourist-hiking-mountains-piedmont-italy-sunny-day_181624-52402.jpg", imageAlt: "Beautiful mountain landscape"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Popular Destinations"
|
title="Popular Destinations"
|
||||||
description="Explore our most beloved routes with stunning visuals and exclusive deals"
|
description="Explore our most beloved routes with stunning visuals and exclusive deals"
|
||||||
@@ -164,18 +170,21 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: "economy", price: "From $99", name: "Economy", buttons: [{ text: "Book Now", href: "/booking" }],
|
id: "economy", price: "From $99", name: "Economy", buttons: [{ text: "Book Now", href: "/booking" }],
|
||||||
features: [
|
features: [
|
||||||
"Standard seat allocation", "One checked baggage", "In-flight snacks", "Seat selection at check-in"],
|
"Standard seat allocation", "One checked baggage", "In-flight snacks", "Seat selection at check-in"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "premium", badge: "Most Popular", badgeIcon: Star,
|
id: "premium", badge: "Most Popular", badgeIcon: Star,
|
||||||
price: "From $249", name: "Premium Economy", buttons: [{ text: "Book Now", href: "/booking" }],
|
price: "From $249", name: "Premium Economy", buttons: [{ text: "Book Now", href: "/booking" }],
|
||||||
features: [
|
features: [
|
||||||
"Extra legroom seating", "Two checked baggage", "Priority boarding", "Complimentary meals", "Priority ground assistance"],
|
"Extra legroom seating", "Two checked baggage", "Priority boarding", "Complimentary meals", "Priority ground assistance"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "business", price: "From $599", name: "Business Class", buttons: [{ text: "Book Now", href: "/booking" }],
|
id: "business", price: "From $599", name: "Business Class", buttons: [{ text: "Book Now", href: "/booking" }],
|
||||||
features: [
|
features: [
|
||||||
"Lie-flat bed seats", "Unlimited baggage", "Gourmet dining", "Lounge access", "Dedicated concierge", "Premium amenity kit"],
|
"Lie-flat bed seats", "Unlimited baggage", "Gourmet dining", "Lounge access", "Dedicated concierge", "Premium amenity kit"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Ticket Classes"
|
title="Ticket Classes"
|
||||||
@@ -214,27 +223,33 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: "1", name: "Sarah Johnson", role: "Travel Blogger", testimonial:
|
id: "1", name: "Sarah Johnson", role: "Travel Blogger", testimonial:
|
||||||
"SkyWings provided exceptional service and unbeatable prices. My journey was comfortable and memorable from start to finish.", imageSrc:
|
"SkyWings provided exceptional service and unbeatable prices. My journey was comfortable and memorable from start to finish.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Sarah Johnson"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Sarah Johnson"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Chen", role: "Business Traveler", testimonial:
|
id: "2", name: "Michael Chen", role: "Business Traveler", testimonial:
|
||||||
"The business class experience is outstanding. Premium comfort, excellent food, and professional service every single time.", imageSrc:
|
"The business class experience is outstanding. Premium comfort, excellent food, and professional service every single time.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Michael Chen"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Michael Chen"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Emily Rodriguez", role: "Family Vacation", testimonial:
|
id: "3", name: "Emily Rodriguez", role: "Family Vacation", testimonial:
|
||||||
"Flying with my kids was stress-free thanks to SkyWings' family-friendly policies and attentive crew.", imageSrc:
|
"Flying with my kids was stress-free thanks to SkyWings' family-friendly policies and attentive crew.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Emily Rodriguez"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Emily Rodriguez"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "David Kim", role: "Adventure Seeker", testimonial:
|
id: "4", name: "David Kim", role: "Adventure Seeker", testimonial:
|
||||||
"Affordable fares without sacrificing quality. SkyWings got me to exotic destinations within budget.", imageSrc:
|
"Affordable fares without sacrificing quality. SkyWings got me to exotic destinations within budget.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "David Kim"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "David Kim"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Jessica Martinez", role: "Corporate Executive", testimonial:
|
id: "5", name: "Jessica Martinez", role: "Corporate Executive", testimonial:
|
||||||
"Reliable schedules, professional crew, and seamless connections. My go-to airline for business travel.", imageSrc:
|
"Reliable schedules, professional crew, and seamless connections. My go-to airline for business travel.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5", imageAlt: "Jessica Martinez"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5", imageAlt: "Jessica Martinez"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Thomas Anderson", role: "Frequent Flyer", testimonial:
|
id: "6", name: "Thomas Anderson", role: "Frequent Flyer", testimonial:
|
||||||
"Loyalty rewards program is generous, and customer service excellence is consistent across all flights.", imageSrc:
|
"Loyalty rewards program is generous, and customer service excellence is consistent across all flights.", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=6", imageAlt: "Thomas Anderson"},
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=6", imageAlt: "Thomas Anderson"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Traveler Reviews"
|
title="Traveler Reviews"
|
||||||
description="Real stories from our satisfied passengers across the globe"
|
description="Real stories from our satisfied passengers across the globe"
|
||||||
@@ -257,22 +272,28 @@ export default function HomePage() {
|
|||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "How do I book a flight?", content:
|
id: "1", title: "How do I book a flight?", content:
|
||||||
"Simply visit our website, select your departure and arrival cities, choose your dates, and browse available flights. Select your preferred option and complete the secure booking process in minutes."},
|
"Simply visit our website, select your departure and arrival cities, choose your dates, and browse available flights. Select your preferred option and complete the secure booking process in minutes."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "What is your baggage policy?", content:
|
id: "2", title: "What is your baggage policy?", content:
|
||||||
"Economy passengers get one checked bag. Premium Economy includes two. Business Class offers unlimited baggage. Carry-on bags are included in all classes subject to size restrictions."},
|
"Economy passengers get one checked bag. Premium Economy includes two. Business Class offers unlimited baggage. Carry-on bags are included in all classes subject to size restrictions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Can I change or cancel my flight?", content:
|
id: "3", title: "Can I change or cancel my flight?", content:
|
||||||
"Yes! You can modify your booking up to 24 hours before departure with minimal fees. Full cancellations receive credit for future travel on most fares."},
|
"Yes! You can modify your booking up to 24 hours before departure with minimal fees. Full cancellations receive credit for future travel on most fares."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Do you offer round-trip discounts?", content:
|
id: "4", title: "Do you offer round-trip discounts?", content:
|
||||||
"Absolutely! Our round-trip fares offer significant savings compared to booking separate one-way tickets. Check our website for current promotional rates."},
|
"Absolutely! Our round-trip fares offer significant savings compared to booking separate one-way tickets. Check our website for current promotional rates."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", title: "What payment methods do you accept?", content:
|
id: "5", title: "What payment methods do you accept?", content:
|
||||||
"We accept all major credit cards, debit cards, digital wallets, and bank transfers. Secure payment is guaranteed on all transactions."},
|
"We accept all major credit cards, debit cards, digital wallets, and bank transfers. Secure payment is guaranteed on all transactions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", title: "How can I contact customer support?", content:
|
id: "6", title: "How can I contact customer support?", content:
|
||||||
"Our 24/7 support team is available via phone, email, live chat, and social media. Response times are typically under 2 hours."},
|
"Our 24/7 support team is available via phone, email, live chat, and social media. Response times are typically under 2 hours."
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -280,8 +301,8 @@ export default function HomePage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Stay Connected"
|
tag="Stay Connected"
|
||||||
title="Get Flight Deals & Travel Tips"
|
title="Unlock Exclusive Deals & Insider Travel Tips"
|
||||||
description="Subscribe to our newsletter for exclusive offers, destination guides, and travel inspiration delivered straight to your inbox."
|
description="Get weekly updates with 20% off your first booking, exclusive destination guides, and travel inspiration delivered straight to your inbox."
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user