diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 263a9b5..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Kiskunhalasi SZC Közgazdasági Technikum | Szakképzés", description: "Modern, diákközpontú szakképzés. Turizmus-vendéglátás, közgazdasági, technikai és kereskedelmi képzések. Iskolank 1961 óta nyújt színvonalas oktatást.", keywords: "szakképzés, Kiskunfélegyháza, turizmus, vendéglátás, közgazdasági, technikai képzés", metadataBase: new URL("https://kszckozge.hu"), - alternates: { - canonical: "https://kszckozge.hu" - }, - openGraph: { - title: "Kiskunhalasi SZC Közgazdasági Technikum", description: "Dinamikus, fiatalos és modern szakképzés. Válaszd Te is a Közgét!", url: "https://kszckozge.hu", siteName: "Közgé", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148365750.jpg", alt: "Közgé - Kiskunhalasi SZC" - } - ] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +