From 76bf55937d08642f4eb8b7f8ed5c68015603be5a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 13:51:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 82 ++++++++-------------------------------------- 1 file changed, 14 insertions(+), 68 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d2ad3c0..245d226 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,14 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import "@/lib/gsap-setup"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: 'Asim And Company – 24/7 Petroleum Services in Kahror Pakka', - description: 'Reliable 24/7 fuel, diesel, and petroleum services in Kahror Pakka for vehicles, fleets, and businesses. Quality products, trusted local service.', - keywords: ["petrol pump Kahror Pakka, diesel near me, fuel station Kahror Pakka, Asim And Company, petroleum services, bulk fuel, fleet fueling Punjab, Pakistan"], - openGraph: { - "title": "Asim And Company – 24/7 Petroleum Services", - "description": "Reliable 24/7 fuel, diesel, and petroleum services in Kahror Pakka.", - "url": "https://www.asimandcompany.com", - "siteName": "Asim And Company", - "images": [ - { - "url": "http://img.b2bpic.net/free-vector/isometric-gas-station_107791-4392.jpg", - "alt": "Asim And Company Petroleum Station" - } - ], - "type": "website" - }, - twitter: { - "card": "summary_large_image", - "title": "Asim And Company – 24/7 Petroleum Services", - "description": "Reliable 24/7 fuel, diesel, and petroleum services in Kahror Pakka.", - "images": [ - "http://img.b2bpic.net/free-vector/isometric-gas-station_107791-4392.jpg" - ] - }, - robots: { - "index": true, - "follow": true - }, -}; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} -