diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b2e7c83..1de8d41 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -89,7 +89,7 @@ export default function AboutPage() { { text: "View Services", href: "#" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-vector/isometric-red-truck-different-views_52683-7993.jpg" + imageSrc="http://img.b2bpic.net/free-vector/isometric-red-truck-different-views_52683-7993.jpg?_wi=2" imageAlt="FuelTrade Texas professional operations" mediaAnimation="blur-reveal" className="min-h-screen" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5776a41..d46e592 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Roboto } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,27 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"] }); +export const metadata: Metadata = { + title: "Premium Fuel Distribution | FuelTrade Texas", + description: "Reliable gasoline and diesel supply for Texas and Mexico. Trusted by 500+ commercial clients.", + keywords: "fuel supply, gasoline, diesel, Texas, Mexico, distribution, logistics, commercial fuel", + openGraph: { + title: "FuelTrade Texas - Premium Fuel Distribution", + description: "Industry-leading fuel supplier serving domestic and international markets.", + siteName: "FuelTrade Texas", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "FuelTrade Texas - Fuel Supplier", + description: "Premium gasoline & diesel distribution across Texas & Mexico", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +53,9 @@ export default function RootLayout({ return ( - + {children}