From ff1f8a4bdfb3b5e9f4cdbcb0e10157932ac7fff6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 22:01:44 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 92d884b..6aca865 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,14 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Create Next App", description: "Generated by create next app"}; + title: "Közgé - Kiskunfélegyházi Közgazdasági Technikum", description: "Dinamikus, fiatalos és modern oktatás. A Kiskunhalasi SZC Kiskunfélegyházi Közgazdasági Technikum 1961 óta nyújt színvonalas közismereti és szakmai oktatást." +}; export default function RootLayout({ children, @@ -19,8 +16,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - + + {children}