Merge version_1 into main #1
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +72,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -126,11 +126,11 @@ export default function HomePage() {
|
||||
icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industrial-metal-drill-machine-metalworking-workshop_342744-520.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industrial-metal-drill-machine-metalworking-workshop_342744-520.jpg?_wi=1",
|
||||
imageAlt: "Industrial laser cutting machine in action",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-shavings_1098-13981.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-shavings_1098-13981.jpg?_wi=1",
|
||||
imageAlt: "Precision cut metal piece laser",
|
||||
},
|
||||
],
|
||||
@@ -141,11 +141,11 @@ export default function HomePage() {
|
||||
icon: Layers,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22897.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22897.jpg?_wi=1",
|
||||
imageAlt: "Metal bending machine with hydraulic pressure system",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-detail-machinery_114579-2839.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-detail-machinery_114579-2839.jpg?_wi=1",
|
||||
imageAlt: "Perfectly bent metal component for industrial use",
|
||||
},
|
||||
],
|
||||
@@ -156,11 +156,11 @@ export default function HomePage() {
|
||||
icon: Hammer,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-uniform-protective-mask-is-working-metal-factory_613910-5381.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-uniform-protective-mask-is-working-metal-factory_613910-5381.jpg?_wi=1",
|
||||
imageAlt: "Custom metal fabrication project in production",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arc-welding-steel-construction-site_2831-692.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arc-welding-steel-construction-site_2831-692.jpg?_wi=1",
|
||||
imageAlt: "Completed custom metal fabrication assembly",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -91,11 +91,11 @@ export default function ServicesPage() {
|
||||
icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industrial-metal-drill-machine-metalworking-workshop_342744-520.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/industrial-metal-drill-machine-metalworking-workshop_342744-520.jpg?_wi=2",
|
||||
imageAlt: "Industrial laser cutting machine in action",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-shavings_1098-13981.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-shavings_1098-13981.jpg?_wi=2",
|
||||
imageAlt: "Precision cut metal piece laser",
|
||||
},
|
||||
],
|
||||
@@ -106,11 +106,11 @@ export default function ServicesPage() {
|
||||
icon: Layers,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22897.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22897.jpg?_wi=2",
|
||||
imageAlt: "Metal bending machine with hydraulic pressure system",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-detail-machinery_114579-2839.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-detail-machinery_114579-2839.jpg?_wi=2",
|
||||
imageAlt: "Perfectly bent metal component for industrial use",
|
||||
},
|
||||
],
|
||||
@@ -121,11 +121,11 @@ export default function ServicesPage() {
|
||||
icon: Hammer,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-uniform-protective-mask-is-working-metal-factory_613910-5381.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-uniform-protective-mask-is-working-metal-factory_613910-5381.jpg?_wi=2",
|
||||
imageAlt: "Custom metal fabrication project in production",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arc-welding-steel-construction-site_2831-692.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arc-welding-steel-construction-site_2831-692.jpg?_wi=2",
|
||||
imageAlt: "Completed custom metal fabrication assembly",
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user