diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..a94caeb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,55 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Aspire Lasers | Precision Metal Fabrication & Laser Cutting", + description: "Professional laser cutting, metal bending, and custom fabrication services for industrial and commercial clients. Established 2022. Precision, reliability, modern machinery.", + keywords: "laser cutting, metal fabrication, metal bending, precision metal processing, industrial fabrication, custom metal work", + metadataBase: new URL("https://aspirelasers.com"), + alternates: { + canonical: "https://aspirelasers.com", + }, + openGraph: { + title: "Aspire Lasers - Precision Metal Fabrication", + description: "Expert laser cutting and metal fabrication services with ±0.1mm precision tolerance", + type: "website", + siteName: "Aspire Lasers", + images: [ + { + url: "http://img.b2bpic.net/free-photo/side-view-strong-mechanic-protective-glassesn-working_7502-4473.jpg", + alt: "Aspire Lasers precision laser cutting equipment", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Aspire Lasers - Precision Metal Fabrication", + description: "Professional metal cutting, bending, and custom fabrication services", + images: [ + "http://img.b2bpic.net/free-photo/side-view-strong-mechanic-protective-glassesn-working_7502-4473.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +58,9 @@ export default function RootLayout({ return ( - + {children}