Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 13:49:08 +00:00
2 changed files with 17 additions and 46 deletions

View File

@@ -1,55 +1,22 @@
import type { Metadata } from "next";
import { Nunito } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services in your area. Certified technicians, honest pricing, transparent diagnostics. Call for a quote today!", keywords: "car repair, auto service, mechanic, brake repair, engine diagnostics, local repair shop", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services. Certified technicians, honest pricing, transparent diagnostics.", type: "website", siteName: "Snow Air", images: [
{
url: "http://img.b2bpic.net/free-photo/coworkers-car-service-using-professional-mechanical-tool-repair-broken-engine-efficient-workers-garage-repairing-client-automobile-ensuring-optimal-automotive-performance-close-up_482257-73057.jpg", alt: "Professional mechanic at Snow Air"},
],
},
twitter: {
card: "summary_large_image", title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services. Certified technicians, honest pricing, transparent diagnostics.", images: [
"http://img.b2bpic.net/free-photo/coworkers-car-service-using-professional-mechanical-tool-repair-broken-engine-efficient-workers-garage-repairing-client-automobile-ensuring-optimal-automotive-performance-close-up_482257-73057.jpg"],
},
title: 'Snow Air - Professional Auto Repair Services',
description: 'Certified technicians. Honest pricing. Expert automotive repair and maintenance services you can trust.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,7 +8,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, CheckCircle, Users, Shield, Briefcase, Star, Zap, Wrench } from 'lucide-react';
import { Award, CheckCircle, Users, Shield, Briefcase, Star, Zap, Wrench, Phone, FileText } from 'lucide-react';
export default function SnowAirPage() {
return (
@@ -71,6 +71,11 @@ export default function SnowAirPage() {
tag="Quick Services"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "View All Services", href: "#contact" },
{ text: "Request Quote", href: "#contact" }
]}
buttonAnimation="slide-up"
features={[
{ id: "01", title: "Engine Diagnostics", description: "Advanced computer diagnostics to identify and resolve engine issues quickly.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-using-laptop-while-servicing-car-engine_1170-1295.jpg?_wi=2", imageAlt: "Engine diagnostic service" },
{ id: "02", title: "Brake Repairs", description: "Complete brake system inspection and repair for your safety.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-with-tool-wheel-hands-mechanic-blue-work-clothes_1157-46150.jpg?_wi=2", imageAlt: "Brake repair service" },
@@ -168,4 +173,4 @@ export default function SnowAirPage() {
</div>
</ThemeProvider>
);
}
}