Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Leading Oilfield Solutions"
|
||||
description="ASR provides comprehensive oilfield services and expertise to power your operations. From drilling to maintenance, we deliver excellence in energy production."
|
||||
description="Increase uptime to 98% and reduce operational costs by up to 40% with ASR's proven oilfield expertise. Industry Leader in reliability and innovation."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Industry Leader"
|
||||
tagIcon={Zap}
|
||||
@@ -99,7 +99,8 @@ export default function LandingPage() {
|
||||
id: "2", title: "Equipment Maintenance", author: "ASR Technical", description: "Comprehensive maintenance programs ensuring optimal equipment performance, extended asset life, and reduced downtime across your operations.", tags: ["Maintenance", "Support"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/railroad-worker-checking-cargo-containers-freight-train-station_342744-759.jpg", imageAlt: "Equipment maintenance services"},
|
||||
{
|
||||
id: "3", title: "Oilfield Consulting", author: "ASR Consulting", description: "Strategic consulting services to optimize your operations, improve efficiency, and maximize profitability in today's energy market.", tags: ["Consulting", "Strategy"], imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12805.jpg", imageAlt: "Consulting and strategy services"},
|
||||
id: "3", title: "Oilfield Consulting", author: "ASR Consulting", description: "Strategic consulting services to optimize your operations, improve efficiency, and maximize profitability in today's energy market.", tags: ["Consulting", "Strategy"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12805.jpg", imageAlt: "Consulting and strategy services"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user