Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-05 11:04:26 +00:00
2 changed files with 14 additions and 41 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -85,6 +85,7 @@ export default function LandingPage() {
metrics={[
{ value: "10,000+", title: "Homes Powered" },
{ value: "50M+", title: "kWh Generated Annually" },
{ value: "25+", title: "Years Avg. Warranty" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWQCVs2NYJhslvOCSYt3gmg0h5/a-happy-family-enjoying-time-outside-the-1772706417883-ebbfb3fc.png"
imageAlt="Family enjoying solar energy benefits"
@@ -268,4 +269,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}