Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9658c2f0cd | |||
| 69a8e8a808 | |||
| bf065c872a |
@@ -1,50 +1,32 @@
|
|||||||
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={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1394,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user