5 Commits

Author SHA1 Message Date
6f2407a521 Update src/app/page.tsx 2026-03-06 08:16:17 +00:00
1b07b6ce18 Update src/app/layout.tsx 2026-03-06 08:16:17 +00:00
0967936555 Merge version_1 into main
Merge version_1 into main
2026-03-06 08:15:00 +00:00
8c120c7dbf Merge version_1 into main
Merge version_1 into main
2026-03-06 08:14:20 +00:00
9b0bb237b7 Merge version_1 into main
Merge version_1 into main
2026-03-06 08:13:07 +00:00
2 changed files with 8 additions and 59 deletions

View File

@@ -1,70 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "SkyWings - Book Flights & Travel with Confidence",
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"],
},
};
title: "SkyWings - Luxury Air Travel", description: "Experience luxury air travel with SkyWings. Discover unbeatable fares, premium comfort, and seamless booking for your next adventure."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -73,7 +73,7 @@ export default function HomePage() {
tagIcon={Plane}
tagAnimation="slide-up"
buttons={[
{ text: "Search Flights", href: "/booking" },
{ text: "Book Your Flight Now", href: "/booking" },
{ text: "Learn More", href: "about" },
]}
buttonAnimation="slide-up"