From 62b68b30162afa9175ae95debf2ec53ee8336d82 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:19:53 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++--------------------------------- 1 file changed, 15 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index beaa91b..13f2639 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Cormorant_Garamond, Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["300", "400", "700"], }); export const metadata: Metadata = { - title: "TRUST Maribor | Kavarna & Klub", description: "TRUST je edinstvena lokacija v Mariboru, ki združuje sproščeno atmosfero kavarne s pravo energijo nočnega kluba. Rezervirajte danes in doživite razliko.", keywords: "kavarna Maribor, klub Maribor, bar, koktajli, nočni klub, rezervacija, Gosposvetska cesta", metadataBase: new URL("https://trustmaribor.si"), - alternates: { - canonical: "https://trustmaribor.si"}, - openGraph: { - title: "TRUST Maribor | Dva svetova. En prostor.", description: "Odkrijte edinstveno izkušnjo v TRUST-u — kavarna in klub pod eno streho v srcu Maribora.", url: "https://trustmaribor.si", siteName: "TRUST Maribor", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/logos-collection-with-vintage-luxury-style_23-2147842744.jpg", alt: "TRUST Venue Logo"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TRUST Maribor | Dva svetova. En prostor.", description: "Kavarna & Klub v srcu Maribora. Rezervirajte svoj prostor danes.", images: ["http://img.b2bpic.net/free-vector/logos-collection-with-vintage-luxury-style_23-2147842744.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TRUST - Kavarna & Klub Maribor", description: "TRUST je edinstvena kombinacija sproščene kavarne in energičnega nočnega kluba v srcu Maribora."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +