diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e42a7ca..c4e6fa6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Unique Sea Creatures | Ocean Realm", description: "Explore extraordinary sea creatures with remarkable adaptations. Learn about bioluminescence, camouflage, and deep-sea life on Ocean Realm.", keywords: "sea creatures, ocean life, marine biology, bioluminescence, deep sea, unique animals", metadataBase: new URL("https://oceanrealm.com"), - alternates: { - canonical: "https://oceanrealm.com"}, - openGraph: { - title: "Unique Sea Creatures | Ocean Realm", description: "Discover the wonders of unique sea creatures and their extraordinary adaptations.", url: "https://oceanrealm.com", siteName: "Ocean Realm", type: "website"}, - twitter: { - card: "summary_large_image", title: "Unique Sea Creatures | Ocean Realm", description: "Explore extraordinary sea creatures with remarkable adaptations."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Ocean Realm", description: "Explore the extraordinary adaptations and fascinating behaviors of ocean's most unusual inhabitants."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -