From 9097cf2dc52753506fb3cc3f63c90b24d5ecd344 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:04:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cab03f1..cb38173 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Markrize | Solar Energy Solutions", description: "Professional solar panel installation & energy solutions. Save up to 30% on energy bills with Markrize's expert solar systems.", keywords: "solar panels, solar energy, solar installation, renewable energy, residential solar, solar company", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Markrize | Premium Solar Energy Solutions", description: "Transform your home with professional solar installation. Save money, reduce carbon footprint, and gain energy independence.", url: "https://markrize.com", siteName: "Markrize", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWQCVs2NYJhslvOCSYt3gmg0h5/modern-solar-panel-installation-on-a-res-1772706417750-7e857491.png", alt: "Markrize Solar Installation"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Markrize Solar Energy Solutions", description: "Professional solar panels & renewable energy systems for your home.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWQCVs2NYJhslvOCSYt3gmg0h5/modern-solar-panel-installation-on-a-res-1772706417750-7e857491.png"], - }, -}; + title: "Markrize - Solar Energy Solutions", description: "Transform your energy future with Markrize's premium solar solutions. Professional installation, lifetime support, and maximum savings."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +