diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8af08a8..fdfb292 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Eazy GYM – Gym i Ystad | Old School Träning", description: "Old school gym i Ystad med fria vikter, maskiner och bra gemenskap. Kom och provträna hos Eazy GYM. Ring 073-752 70 95.", keywords: "gym ystad, gym i ystad, träna ystad, styrketräning ystad, fitnesscenter ystad", metadataBase: new URL("https://easygym-ystad.se"), - alternates: { - canonical: "https://easygym-ystad.se"}, - openGraph: { - title: "Eazy GYM – Lokalt Gym i Ystad", description: "Old school gym med fria vikter, maskiner och starkt medlemskap. Seriös träning för alla nivåer.", url: "https://easygym-ystad.se", siteName: "Eazy GYM", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/person-sport-gym-using-kettlebells_23-2149255794.jpg", alt: "Eazy GYM - Fria vikter och träningssal"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Eazy GYM – Gym i Ystad", description: "Old school gym med fria vikter, maskiner och bra gemenskap.", images: ["http://img.b2bpic.net/free-photo/person-sport-gym-using-kettlebells_23-2149255794.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Eazy GYM", description: "Ett riktigt gym i Ystad med fria vikter, maskiner och starkt medlemskap"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}