diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d26b266..3350948 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Detail Flow Mobile Car Detailing Tracy CA", description: "Professional mobile car detailing in Tracy, CA. Interior detail, full detail, paint correction, and ceramic coating services. We come to you!", keywords: "mobile car detailing Tracy, auto detailing California, ceramic coating Tracy, paint correction, car detail service", metadataBase: new URL("https://detailflow.local"),
- alternates: {
- canonical: "https://detailflow.local"},
- openGraph: {
- title: "Detail Flow Mobile Car Detailing", description: "Professional car detailing service bringing expert results to your location in Tracy and surrounding areas.", url: "https://detailflow.local", siteName: "Detail Flow", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Detail Flow Mobile Car Detailing", description: "Professional car detailing at your location"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Detail Flow - Mobile Car Detailing in Tracy", description: "Professional mobile car detailing services in Tracy and surrounding areas. We come to you for convenient, high-quality car detailing."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 40289bb..f4720b4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -62,22 +62,26 @@ export default function DetailFlowPage() {
{
id: "interior", badge: "Popular", badgeIcon: Sparkles,
price: "$165", subtitle: "Interior Detail", features: [
- "Full vacuum and cleaning", "Steam cleaning surfaces", "Wipe down plastics", "Center console detail", "Cup holders clean", "Door panels wipe", "Windows inside and out", "Odor removal"],
+ "Full vacuum and cleaning", "Steam cleaning surfaces", "Wipe down plastics", "Center console detail", "Cup holders clean", "Door panels wipe", "Windows inside and out", "Odor removal"
+ ],
},
{
id: "full", badge: "Best Value", badgeIcon: Star,
price: "$215", subtitle: "Full Detail", features: [
- "Exterior wash", "Foam bath", "Wheel cleaning", "Tire shine", "Interior detail", "Hand dry", "Windows", "Premium finish"],
+ "Exterior wash", "Foam bath", "Wheel cleaning", "Tire shine", "Interior detail", "Hand dry", "Windows", "Premium finish"
+ ],
},
{
id: "paint-correction", badge: "Premium", badgeIcon: Zap,
price: "$350-$600", subtitle: "Paint Correction", features: [
- "Professional paint assessment", "Swirl mark removal", "Oxidation treatment", "Paint surface restoration", "Preparation for coating"],
+ "Professional paint assessment", "Swirl mark removal", "Oxidation treatment", "Paint surface restoration", "Preparation for coating"
+ ],
},
{
id: "coating", badge: "Premium Protection", badgeIcon: Shield,
price: "$700-$1,250", subtitle: "Paint Correction + Ceramic Coating", features: [
- "Full paint correction", "Professional grade ceramic coating", "12-24 month protection", "Water beading protection", "UV protection", "Longevity guarantee"],
+ "Full paint correction", "Professional grade ceramic coating", "12-24 month protection", "Water beading protection", "UV protection", "Longevity guarantee"
+ ],
},
]}
title="Our Services & Pricing"
@@ -86,7 +90,7 @@ export default function DetailFlowPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
- buttons={[{ text: "Get Quote", href: "#contact" }]}
+ buttons={[{ text: "Request Free Quote", href: "#contact" }]}
buttonAnimation="opacity"
/>
@@ -96,15 +100,18 @@ export default function DetailFlowPage() {
features={[
{
id: "mobile", label: "Mobile", title: "We Come To You", items: [
- "No need to drive anywhere", "Save time and hassle", "On-site professional equipment", "Self-contained water and power"],
+ "No need to drive anywhere", "Save time and hassle", "On-site professional equipment", "Self-contained water and power"
+ ],
},
{
id: "quality", label: "Quality", title: "Premium Results", items: [
- "Professional-grade products", "Expert technicians", "Attention to detail", "Satisfaction guaranteed"],
+ "Professional-grade products", "Expert technicians", "Attention to detail", "Satisfaction guaranteed"
+ ],
},
{
id: "convenient", label: "Easy", title: "Simple Booking", items: [
- "Quick phone or text booking", "Flexible scheduling", "No hidden fees", "Transparent pricing"],
+ "Quick phone or text booking", "Flexible scheduling", "No hidden fees", "Transparent pricing"
+ ],
},
]}
title="Why Choose Detail Flow"
@@ -120,21 +127,21 @@ export default function DetailFlowPage() {