diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 320b80e..93b6ab9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "HTZ Equipment - Premium Agricultural & Construction Machinery", description: "Discover reliable HTZ equipment for agriculture and construction. High-quality tractors, loaders, and harvesters with 30+ years of excellence.", keywords: "HTZ equipment, agricultural machinery, construction equipment, tractors, farm equipment, harvesters", metadataBase: new URL("https://htzequipment.com"), - alternates: { - canonical: "https://htzequipment.com"}, - openGraph: { - title: "HTZ Equipment - Premium Agricultural Machinery", description: "Industry-leading agricultural and construction equipment trusted by 15,000+ customers worldwide.", type: "website", siteName: "HTZ Equipment", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-blue-shirt-guy-tractor-agricultural-machinery_1157-43618.jpg", alt: "HTZ Equipment Showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "HTZ Equipment - Premium Agricultural Machinery", description: "Reliable equipment for modern farming and construction", images: ["http://img.b2bpic.net/free-photo/man-blue-shirt-guy-tractor-agricultural-machinery_1157-43618.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "HTZ Equipment - Premium Agricultural & Construction Machinery", description: "Discover premium agricultural and construction equipment solutions. Reliable, efficient, and built for performance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +