From 76f49f12fa02113a0a4d5c7f9fe902ed9a635b94 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:22:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83a0a46..ceab930 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BESTRONG Metalworks | Custom Steel & Metal Fabrication Bern", description: "Expert steel and metalworking in Bern, Switzerland. Custom fabrication, welding, gates, and industrial metalwork with 20+ years of precision craftsmanship.", keywords: "metalworking, steel fabrication, custom gates, welding, Bern, Switzerland, industrial metal", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "BESTRONG Metalworks | Custom Steel & Metal Fabrication", description: "Expert steel and metalworking in Bern. Custom fabrication with precision craftsmanship.", siteName: "BESTRONG Metalworks", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/blacksmith-work-his-forge_23-2152021020.jpg", alt: "Professional metalworking workshop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "BESTRONG Metalworks | Precision Metalwork in Bern", description: "Custom steel and metal fabrication for residential, commercial, and industrial projects.", images: ["http://img.b2bpic.net/free-photo/blacksmith-work-his-forge_23-2152021020.jpg"], - }, -}; + title: "BESTRONG Metalworks", description: "Custom steel and metal fabrication services for residential, commercial, and industrial projects in Bern"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}