diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5163d..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Kevin Masih - Dark Fantasy & Horror Author", description: "Explore captivating worlds of dark fantasy and horror. Kevin Masih crafts immersive tales of magic, mystery, and fear. Discover his novels and connect with the author.", keywords: "dark fantasy author, horror novels, fantasy books, Kevin Masih, dark magic fiction, mystery thriller", metadataBase: new URL("https://kevinmasih.com"), - alternates: { - canonical: "https://kevinmasih.com"}, - openGraph: { - title: "Kevin Masih - Dark Fantasy & Horror Author", description: "Enter worlds of magic, mystery, and fear. Discover dark fantasy and horror novels by Kevin Masih.", url: "https://kevinmasih.com", siteName: "Kevin Masih", type: "website", images: [ - { - url: "https://kevinmasih.com/og-image.jpg", alt: "Kevin Masih - Dark Fantasy & Horror Author"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Kevin Masih - Dark Fantasy & Horror Author", description: "Enter worlds of magic, mystery, and fear. Discover dark fantasy and horror novels.", images: ["https://kevinmasih.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -