From 7958c49068d50f585936c0eeba61c24f2e88c98d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:37:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 72 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9bfe1c8..9fa9fce 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "My Wings 2025 - Aviation Community for Flight Simulator Pilots", - description: "Join My Wings 2025, the ultimate aviation community for flight simulator pilots and aviation enthusiasts. Connect globally, share flights, explore screenshots, and join virtual airlines.", - keywords: "flight simulator community, aviation, virtual pilots, flight sharing, online flight community, aviation enthusiasts", - metadataBase: new URL("https://mywings2025.com"), - alternates: { - canonical: "https://mywings2025.com", - }, - openGraph: { - title: "My Wings 2025 - Aviation Community", - description: "Connect with thousands of pilots and aviation fans. Share your flights, screenshots, and aviation passion with the global community.", - siteName: "My Wings 2025", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png", - alt: "Airplane flying through beautiful sky", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "My Wings 2025 - Aviation Community", - description: "The ultimate flight simulator and aviation community platform for pilots worldwide.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "My Wings 2025", description: "Join the most vibrant flight simulator and virtual airline community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}