diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7525046..6761c92 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Restoran KOD ČEDE - Autentični Srpski Roštilj", description: "Domaćinski obilno nezaboravno. Vrhunski roštilj, pečenje bez kompromisa, i usluga koja vas čini članom porodice. Rezervišite sto sada.", keywords: "srpski roštilj, pečenje, restorani, domaća hrana, tradicionalno, roštilj meso", metadataBase: new URL("https://koddcede.rs"), - alternates: { - canonical: "https://koddcede.rs"}, - openGraph: { - title: "Restoran KOD ČEDE - Autentični Srpski Roštilj", description: "Domaćinski obilno nezaboravno. Vrhunski roštilj i pečenje bez kompromisa.", url: "https://koddcede.rs", siteName: "Restoran KOD ČEDE", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cookout-summer-garden_23-2148167613.jpg", alt: "Serbian roasted meat traditional grill"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Restoran KOD ČEDE - Autentični Srpski Roštilj", description: "Domaćinski obilno nezaboravno. Vrhunski roštilj i pečenje bez kompromisa.", images: ["http://img.b2bpic.net/free-photo/cookout-summer-garden_23-2148167613.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Restoran KOD ČEDE - Domaćinski Roštilj", description: "Autentični domaćinski roštilj sa tradicionalnom pripremom i isključivom kvalitetom ingredijenata."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}