diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..2ff1667 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,36 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Blue Spirit Aero | Hydrogen-Electric Aircraft Innovation", + description: "Blue Spirit Aero develops hydrogen-powered aircraft with zero emissions. Explore Dragonfly, our hydrogen-electric family transforming sustainable aviation.", + keywords: "hydrogen aircraft, electric aviation, sustainable flight, zero-emission aircraft, Dragonfly, hydrogen fuel cells, aerospace innovation", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Blue Spirit Aero | Hydrogen-Electric Aircraft Innovation", + description: "Experience the future of clean aviation with Blue Spirit Aero's hydrogen-electric Dragonfly aircraft.", + siteName: "Blue Spirit Aero", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aoj0oDInIDT466HysuFgt45FOJ/a-stunning-aerial-view-of-the-dragonfly--1773265706010-ac43ab55.png", + alt: "Dragonfly hydrogen-electric aircraft", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Blue Spirit Aero | Hydrogen-Electric Aircraft", + description: "Zero-emission aircraft powered by hydrogen fuel cells.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aoj0oDInIDT466HysuFgt45FOJ/a-stunning-aerial-view-of-the-dragonfly--1773265706010-ac43ab55.png", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +62,9 @@ export default function RootLayout({ return ( - + {children}