diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e02d835..8c55912 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NEXUS | Gaming × Luxury Fragrances", description: "Enter the digital portal where cutting-edge gaming meets sensory luxury. Discover 500+ premium games and 50+ signature fragrances.", keywords: "gaming, luxury fragrance, digital experience, immersive portal, premium games, exclusive fragrances", metadataBase: new URL("https://nexus-portal.com"), - alternates: { - canonical: "https://nexus-portal.com"}, - openGraph: { - title: "NEXUS | Gaming × Luxury Fragrances", description: "Experience the fusion of immersive gaming and sensory luxury. Enter the digital portal.", url: "https://nexus-portal.com", siteName: "NEXUS", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfqBURVpU8fveoPewUHvCRRRIF/a-stunning-futuristic-gaming-interface-w-1772993900887-7e1e2f38.png", alt: "NEXUS Portal Experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NEXUS | Gaming × Luxury Fragrances", description: "Enter the digital portal where gaming meets luxury.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfqBURVpU8fveoPewUHvCRRRIF/a-stunning-futuristic-gaming-interface-w-1772993900887-7e1e2f38.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "NEXUS - Gaming & Luxury Fragrances", description: "Experience the fusion of immersive gaming and sensory luxury"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -