From 97c0922ef54187e2fd59627c060aa3614d4113af Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:25:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 +++++++---------------------------------- 1 file changed, 7 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6537566..5dbe085 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Outfit } 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 outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites for businesses ready to stand out online.", keywords: "web design, web development, UI/UX design, responsive design, digital strategy", openGraph: { - title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites for businesses.", siteName: "WebDesign Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg", alt: "Web Design Portfolio Showcase" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites.", images: ["http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg"] - } -}; + title: "WebDesign Studio", description: "Award-winning web design and development services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}