Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f2407a521 | |||
| 1b07b6ce18 | |||
| 0967936555 | |||
| 8c120c7dbf | |||
| 9b0bb237b7 |
@@ -1,70 +1,20 @@
|
|||||||
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 +1382,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"
|
||||||
|
|||||||
Reference in New Issue
Block a user