From ca183f9170d24db4709714847d36e12b7df3f251 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:17:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90d17d6..c3e4c91 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,20 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mendes Webworks | Web Design & Development Agency", description: "Premium web design and development services. Transform your online presence with stunning, responsive websites that drive results.", keywords: "web design, web development, responsive design, UX design, UI design, website design agency", metadataBase: new URL("https://mendeswebworks.com"), - alternates: { - canonical: "https://mendeswebworks.com" - }, - openGraph: { - title: "Mendes Webworks | Web Design & Development", description: "Transforming ideas into exceptional web experiences. Premium website design and development for brands that demand excellence.", url: "https://mendeswebworks.com", siteName: "Mendes Webworks", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASXTWcc8z44JwiJsJFbvbRij5B/a-modern-web-design-studio-workspace-wit-1772587040234-07045f16.png", alt: "Mendes Webworks - Web Design Agency" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Mendes Webworks | Web Design & Development", description: "Premium website design and development services", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASXTWcc8z44JwiJsJFbvbRij5B/a-modern-web-design-studio-workspace-wit-1772587040234-07045f16.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Mendes Webworks | Premium Web Design & Development", description: "Transform your online presence with exceptional web design and development services from Mendes Webworks."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}