7 Commits

Author SHA1 Message Date
e30d695870 Merge version_2 into main
Merge version_2 into main
2026-03-04 01:06:05 +00:00
1fe6f9b25e Update src/app/page.tsx 2026-03-04 01:06:01 +00:00
632059e785 Update src/app/layout.tsx 2026-03-04 01:06:00 +00:00
4fe6b727f0 Merge version_1 into main
Merge version_1 into main
2026-03-04 01:04:02 +00:00
7a2245dd26 Merge version_1 into main
Merge version_1 into main
2026-03-04 01:03:01 +00:00
7b2a69329d Merge version_1 into main
Merge version_1 into main
2026-03-04 01:01:03 +00:00
cb57dbd676 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:59:10 +00:00
2 changed files with 8 additions and 56 deletions

View File

@@ -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>
); );
} }

View File

@@ -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"
/> />