From 263d9dd1b7b287954b10eb4bff1b0b54ba5362f2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:30:19 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1430 +------------------------------------------- 1 file changed, 8 insertions(+), 1422 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bc4fde2..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Raja Auto Store - Premium Agriculture Equipment", - description: "Buy quality farming equipment, machinery, and supplies at Raja Auto Store. Trusted by 5000+ farmers. Expert support and service available.", - keywords: "agriculture equipment, farming machinery, farm supplies, tractors, agricultural tools", - metadataBase: new URL("https://rajaautostore.com"), - alternates: { - canonical: "https://rajaautostore.com", - }, - openGraph: { - title: "Raja Auto Store - Premium Agriculture Equipment", - description: "Your trusted partner for quality farming equipment and agricultural solutions", - siteName: "Raja Auto Store", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/aerial-overhead-shot-combine-harvesters-farming-field-daytime_181624-27900.jpg", - alt: "Raja Auto Store Premium Agriculture Equipment", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Raja Auto Store - Agriculture Equipment", - description: "Premium farming machinery and supplies from India's trusted equipment provider", - images: ["http://img.b2bpic.net/free-photo/aerial-overhead-shot-combine-harvesters-farming-field-daytime_181624-27900.jpg"], - }, - 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} - -