diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e76aecb..bf8f8c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "Fluxcity Scripts - Professional Gaming Scripts for Apex, COD & Fortnite", description: "Elite gaming scripts for Apex Legends, Call of Duty 6 & 7, and Fortnite. Gain competitive advantage with precision optimization and 99.8% undetected performance.", keywords: "gaming scripts, Apex scripts, COD scripts, Fortnite scripts, esports optimization, competitive gaming", metadataBase: new URL("https://fluxcityscripts.com"), - alternates: { - canonical: "https://fluxcityscripts.com"}, - openGraph: { - title: "Fluxcity Scripts - Dominate Every Match", description: "Elite gaming scripts engineered for competitive advantage.", url: "https://fluxcityscripts.com", siteName: "Fluxcity Scripts", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png", alt: "Professional esports gaming setup"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fluxcity Scripts - Professional Gaming Scripts", description: "Elite gaming scripts for Apex, COD, and Fortnite.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AezWAAofjdiUub75PabFbpqZky/a-high-octane-gaming-hero-image-showing--1772968138267-74e3311a.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Fluxcity Scripts - Elite Gaming Scripts", description: "Professional gaming scripts for Apex Legends, Call of Duty, and Fortnite. Undetected performance enhancements with 24/7 support."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}