5 Commits

Author SHA1 Message Date
67f026cf5e Update src/app/page.tsx 2026-03-06 21:51:58 +00:00
e8b11fc3f8 Update src/app/layout.tsx 2026-03-06 21:51:57 +00:00
db39069d28 Merge version_1 into main
Merge version_1 into main
2026-03-06 21:50:07 +00:00
9269605afc Merge version_1 into main
Merge version_1 into main
2026-03-06 21:49:17 +00:00
cb449759b6 Merge version_1 into main
Merge version_1 into main
2026-03-06 21:47:49 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -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>
);
}

View File

@@ -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"