3 Commits

Author SHA1 Message Date
9658c2f0cd Update src/app/page.tsx 2026-03-09 22:11:01 +00:00
69a8e8a808 Update src/app/layout.tsx 2026-03-09 22:11:01 +00:00
bf065c872a Merge version_1 into main
Merge version_1 into main
2026-03-09 22:08:08 +00:00
2 changed files with 20 additions and 38 deletions

View File

@@ -1,49 +1,31 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: '--font-geist-sans',
weight: ["300", "400", "500", "600", "700"], subsets: ['latin'],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: '--font-geist-mono',
}); subsets: ['latin'],
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Premium Tires & Expert Service | Stewart Tire & Performance", description: "Discover premium tires and professional automotive services at Stewart Tire & Performance. 25+ years serving drivers with quality, expertise, and satisfaction.", keywords: "tires, tire shop, tire service, wheel alignment, tire installation, automotive", openGraph: { title: 'Create Next App',
title: "Stewart Tire & Performance - Your Tire Experts", description: "Premium tires and professional services you can trust. 25+ years of excellence.", type: "website", siteName: "Stewart Tire & Performance"}, description: 'Generated by create next app',
twitter: {
card: "summary_large_image", title: "Stewart Tire & Performance", description: "Premium tires and expert automotive service"},
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={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1412,7 +1394,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -11,7 +11,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Award, CheckCircle, Phone, Shield, Sparkles, Star, TrendingUp, Users, Zap } from 'lucide-react'; import { Award, CheckCircle, Phone, Shield, Sparkles, Star, TrendingUp, Users, Zap, Heart } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -68,7 +68,8 @@ export default function LandingPage() {
description="With over 25 years of experience, Stewart Tire & Performance has been the go-to destination for drivers seeking premium tires and expert automotive services. Our certified technicians use state-of-the-art equipment to ensure your vehicle receives the best care possible." description="With over 25 years of experience, Stewart Tire & Performance has been the go-to destination for drivers seeking premium tires and expert automotive services. Our certified technicians use state-of-the-art equipment to ensure your vehicle receives the best care possible."
metrics={[ metrics={[
{ value: "25+", title: "Years of Excellence" }, { value: "25+", title: "Years of Excellence" },
{ value: "10,000+", title: "Satisfied Customers" } { value: "10,000+", title: "Satisfied Customers" },
{ value: "99%", title: "Customer Retention Rate" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-preparing-check-list_1170-1648.jpg" imageSrc="http://img.b2bpic.net/free-photo/mechanic-preparing-check-list_1170-1648.jpg"
imageAlt="Professional tire service technician" imageAlt="Professional tire service technician"