From 271f0278bf3ff5d535b5994ed8574b515d70c97c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:36:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 6 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5e2a590..0efe9c7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "ALUPROF – Aluminijski i PVC Prozori u Bihaću", description: "Proizvodnja i ugradnja vrhunskih aluminijskih i PVC prozora, vrata i fasada u Bihaću. Besplatna ponuda i profesionalna montaža.", keywords: "prozori bihać, aluminijski prozori, PVC prozori, vrata, stolarija, prozori bihać, ugradnja prozora", openGraph: { - title: "ALUPROF – Aluminijski i PVC Prozori u Bihaću", description: "Vrhunska kvaliteta prozora i vrata sa profesionalnom ugradnjom. Besplatna ponuda!", type: "website", siteName: "ALUPROF"}, - twitter: { - card: "summary_large_image", title: "ALUPROF – Aluminijski i PVC Prozori u Bihaću", description: "Vrhunska kvaliteta prozora i vrata sa profesionalnom ugradnjom."}, - robots: { - index: true, - follow: true, - }, -}; + title: "ALUPROF - Aluminijski i PVC Prozori u Bihaću", description: "Proizvodnja i ugradnja alu i PVC stolarije vrhunskog kvaliteta u Bihaću i okolini. Savršena kombinacija dugotrajnosti, estetike i energetske efikasnosti."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -