From c8214a4804ce0d5c52f42a18a66d7e2516ba700a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 20:32:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 74 ++++++++-------------------------------------- 1 file changed, 13 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1160b5f..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Clean Tech - Professional Business Website Builder", - description: "Transform your business with custom web design and development. Clean Tech builds stunning, high-performance websites that drive growth and convert visitors.", - keywords: "web design, web development, business website, custom website builder, digital solutions", - metadataBase: new URL("https://cleantech.com"), - alternates: { - canonical: "https://cleantech.com", - }, - openGraph: { - title: "Clean Tech - Professional Business Website Builder", - description: "Transform your business with custom web design and development services.", - siteName: "Clean Tech", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUnO7hTAR4DUTZL30lOgUKcOJI/a-modern-software-dashboard-interface-sh-1772656046259-dd77da7a.png", - alt: "Clean Tech website builder interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Clean Tech - Professional Business Website Builder", - description: "Transform your business with custom web design and development.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUnO7hTAR4DUTZL30lOgUKcOJI/a-modern-software-dashboard-interface-sh-1772656046259-dd77da7a.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +