diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 67abd00..4cf9e9b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "ASR | Leading Oilfield Solutions & Services", description: "ASR provides comprehensive oilfield services including drilling, maintenance, and consulting for energy companies worldwide. 25+ years of industry expertise.", keywords: "oilfield services, drilling, oil and gas, energy solutions, petroleum operations", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "ASR | Leading Oilfield Solutions", description: "Comprehensive oilfield services and expertise to power your operations", type: "website", siteName: "ASR"},
- twitter: {
- card: "summary_large_image", title: "ASR | Leading Oilfield Solutions", description: "Comprehensive oilfield services and expertise to power your operations"},
-};
+ title: "ASR - Oilfield Solutions", description: "Leading oilfield services and expertise"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-