Merge version_2 into main #4
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Airbus A320 - Technical Overview & Aviation Education", description: "Comprehensive guide to the Airbus A320 aircraft. Explore specifications, systems, cockpit technology, and global impact of the world's most successful airliner.", keywords: "Airbus A320, aircraft specifications, aviation technology, fly-by-wire, aircraft systems, pilot training", metadataBase: new URL("https://a320portal.com"),
|
||||
alternates: {
|
||||
canonical: "https://a320portal.com"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Airbus A320 - Technical Overview & Aviation Education", description: "Comprehensive guide to the Airbus A320 aircraft. Explore specifications, systems, cockpit technology, and global impact of the world's most successful airliner.", url: "https://a320portal.com", siteName: "Airbus A320 Aviation Education", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AabEK3yZg9uj6iHOWjNySS7Zed/airbus-a320-commercial-aircraft-in-fligh-1772833609049-d7f6f133.png", alt: "Airbus A320 commercial aircraft in flight, captured from a dynamic angle showing the nose, cockpit, "},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Airbus A320 - Technical Overview & Aviation Education", description: "Comprehensive guide to the Airbus A320 aircraft with specifications, systems, and cockpit technology.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AabEK3yZg9uj6iHOWjNySS7Zed/airbus-a320-commercial-aircraft-in-fligh-1772833609049-d7f6f133.png"],
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ export default function AirbusA320Portal() {
|
||||
tag="Aviation Excellence"
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Explore Features", href: "#aircraft-overview" },
|
||||
{ text: "View Aircraft Overview", href: "#aircraft-overview" },
|
||||
{ text: "Technical Details", href: "#technical-specs" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user