diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2540493..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2792 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "LuminalOS - Next-Gen Desktop Operating System", description: "Experience the future of computing with LuminalOS. A beautiful, powerful desktop OS designed for creators and tech enthusiasts.", keywords: "operating system, desktop, OS, tech, innovation, creative computing, productivity", metadataBase: new URL("https://luminalos.com"), - alternates: { - canonical: "https://luminalos.com"}, - openGraph: { - title: "LuminalOS - Next-Gen Desktop Operating System", description: "Experience the future of computing with LuminalOS. A beautiful, powerful desktop OS designed for creators and tech enthusiasts.", url: "https://luminalos.com", siteName: "LuminalOS", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/user-panel-dashboard-template_23-2148371411.jpg", alt: "LuminalOS Interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LuminalOS - Next-Gen Desktop Operating System", description: "Experience the future of computing with LuminalOS.", images: ["http://img.b2bpic.net/free-vector/user-panel-dashboard-template_23-2148371411.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -