Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 11:43:57 +00:00
2 changed files with 10 additions and 46 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional [Service] in [City] | Licensed & Insured", description: "Fast, reliable, and affordable [service] services in [city]. Licensed professionals available 24/7. Call for a free quote today!", keywords: "[service] in [city], professional [service], licensed [service], affordable [service], [service] near me, emergency [service]", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Professional [Service] Services - [City]", description: "Trusted local [service] company. Fast response, expert technicians, competitive pricing. Call now!", type: "website", siteName: "ProServices", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg", alt: "Professional service technician"},
],
},
twitter: {
card: "summary_large_image", title: "Professional [Service] in [City]", description: "Licensed, insured, and ready to help. Call for service today!", images: ["http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg"],
},
};
title: "ProServices - Professional Service Solutions", description: "Trusted professional services with fast response times and guaranteed satisfaction."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -82,10 +82,10 @@ export default function LandingPage() {
tag="Trust Indicators"
tagAnimation="slide-up"
metrics={[
{ id: "1", value: "500+", title: "Happy Customers", description: "Satisfied clients in our community", icon: Users },
{ id: "2", value: "15+", title: "Years Experience", description: "Industry expertise and knowledge", icon: Award },
{ id: "3", value: "100%", title: "Satisfaction", description: "Guaranteed or your money back", icon: Shield },
{ id: "4", value: "24/7", title: "Available", description: "Emergency service support ready", icon: Clock }
{ id: "1", value: "500+", title: "Happy Customers", description: "Over 500 satisfied customers trust us for quality and reliability", icon: Users },
{ id: "2", value: "15+", title: "Years Experience", description: "More than 15 years of proven industry expertise and professional knowledge", icon: Award },
{ id: "3", value: "100%", title: "Satisfaction", description: "Complete satisfaction guaranteed or your money back with our commitment", icon: Shield },
{ id: "4", value: "24/7", title: "Available", description: "Round-the-clock emergency service support ready when you need us most", icon: Clock }
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"