Merge version_2 into main #2
@@ -1,50 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Geist, Geist_Mono } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: '--font-geist-sans',
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: '--font-geist-mono',
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
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: "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"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Stewart Tire & Performance", description: "Premium tires and expert automotive service"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'Create Next App',
|
||||
description: 'Generated by create next app',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1394,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
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() {
|
||||
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."
|
||||
metrics={[
|
||||
{ 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"
|
||||
imageAlt="Professional tire service technician"
|
||||
|
||||
Reference in New Issue
Block a user