From b9ab5db8f2723a0a8fb0719aed106ea5e752a4f6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:44:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2e043a0..a143452 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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: "Premium Business Solutions | Professional Services", description: "Transform your business with our expert consulting and digital solutions. Trusted by industry leaders for strategic growth and innovation.", keywords: "business consulting, digital transformation, professional services, growth strategy, business solutions", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Business Solutions", description: "Professional services designed to elevate your business and drive measurable results.", siteName: "Premium Business", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg", alt: "business professional office modern workspace"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Business Solutions", description: "Transform your business with expert consulting and digital solutions.", images: ["http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg"], - }, -}; + title: "Premium Business Solutions", description: "Elevate your business with our premium solutions and expert guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}