From 0325b3ac31dd865d4df00ca59022fe8fd02e90a0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 22:23:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e2cb4b7..46e1e9c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Web4You - Modern Web Design Agency | High-Converting Websites", description: "Web4You creates stunning, high-converting websites for businesses. Expert web design, development, and digital strategy to elevate your online presence.", keywords: "web design, web development, digital agency, responsive design, website design, web design agency", metadataBase: new URL("https://web4you.com"), - alternates: { - canonical: "https://web4you.com"}, - openGraph: { - title: "Web4You - Web Design Agency", description: "Create stunning digital experiences that drive real business results with Web4You.", url: "https://web4you.com", siteName: "Web4You", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0ypwWxx8rzuc0nBtgrGnZyER/uploaded-1772662762221-u3akbduu.jpg", alt: "Web4You - Web Design Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Web4You - Web Design Agency", description: "Exceptional web design for forward-thinking brands", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0ypwWxx8rzuc0nBtgrGnZyER/uploaded-1772662762221-u3akbduu.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Web4You - Web Design Agency", description: "Web4You creates stunning, high-converting websites that drive real business results."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}