diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c12a4b8..16364b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SKATE-CORE.CZ - Czech Skateboarding Platform", - description: "Master skateboarding tricks with pro tips from Czech legends, find the perfect hardware setup, compare gear durability, discover best spots, and connect with the Czech skate community.", - keywords: "skateboarding czech, skate tricks, skateboard setup, hardware guide, gear reviews, spot map, skate community, czech skater", - metadataBase: new URL("https://skate-core.cz"), - alternates: { - canonical: "https://skate-core.cz", - }, - openGraph: { - title: "SKATE-CORE.CZ - From the Czech Scene for Czech Riders", - description: "The ultimate skateboarding platform for Czech riders. Tricks, hardware guides, gear reviews, spot map, and community.", - url: "https://skate-core.cz", - siteName: "SKATE-CORE", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/boy-riding-skate_1112-633.jpg", - alt: "Professional skateboarder performing trick", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "SKATE-CORE.CZ - Czech Skateboarding Hub", - description: "Master tricks, find your perfect board setup, and connect with Czech skaters.", - images: ["http://img.b2bpic.net/free-photo/boy-riding-skate_1112-633.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SKATE-CORE - Czech Skateboarding Platform", description: "Master skateboarding tricks, explore hardware setups, test gear durability, find spots, and connect with Czech skate community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -