diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..608ada1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Luminex - Premium DRM-Free eBooks", + description: "Discover curated luxury eBooks from independent authors and publishers. Instant downloads, multiple formats, fair author support.", + keywords: "ebooks, digital books, independent authors, DRM-free, premium reading, literary fiction, non-fiction, instant download", + metadataBase: new URL("https://luminex.com"), + alternates: { + canonical: "https://luminex.com", + }, + openGraph: { + title: "Luminex - Premium DRM-Free eBooks", + description: "Discover curated luxury eBooks from independent authors and publishers. Instant downloads, multiple formats, fair author support.", + url: "https://luminex.com", + siteName: "Luminex", + type: "website", + images: [ + { + url: "https://luminex.com/og-image.jpg", + alt: "Luminex - Premium eBooks", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luminex - Premium DRM-Free eBooks", + description: "Discover curated luxury eBooks from independent authors and publishers.", + images: ["https://luminex.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}