Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1fe6f9b25e | |||
| 632059e785 | |||
| 4fe6b727f0 | |||
| 7a2245dd26 | |||
| 7b2a69329d | |||
| cb57dbd676 |
@@ -1,67 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Eternal Transport - Premium Logistics & Transportation Solutions",
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
description: "Professional freight, cargo, and logistics services with real-time tracking, specialized handling, and reliable delivery. Trust Eternal Transport for your supply chain needs.",
|
|
||||||
keywords: "logistics, transportation, freight services, cargo delivery, supply chain, real-time tracking",
|
|
||||||
metadataBase: new URL("https://eternaltransport.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://eternaltransport.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Eternal Transport - Premium Logistics Solutions",
|
|
||||||
description: "Reliable, efficient, and professional transportation and logistics services across the region.",
|
|
||||||
url: "https://eternaltransport.com",
|
|
||||||
siteName: "Eternal Transport",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/fleet-commercial-delivery-vans-trucks-white-background_84443-73999.jpg",
|
|
||||||
alt: "Eternal Transport Fleet",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Eternal Transport - Premium Logistics Solutions",
|
|
||||||
description: "Professional transportation and logistics services with real-time tracking.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/fleet-commercial-delivery-vans-trucks-white-background_84443-73999.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1429,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -262,7 +262,7 @@ const HomePage = () => {
|
|||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email address"
|
inputPlaceholder="Enter your email address"
|
||||||
buttonText="Get Quote"
|
buttonText="Send Quote Request"
|
||||||
termsText="We respect your privacy. Unsubscribe at any time. By subscribing, you agree to our Terms of Service."
|
termsText="We respect your privacy. Unsubscribe at any time. By subscribing, you agree to our Terms of Service."
|
||||||
ariaLabel="Contact form section"
|
ariaLabel="Contact form section"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user