diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e3935f9..8d46cb0 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,80 +1,22 @@
-import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
-import { DM_Sans } 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 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 dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
- title: "California Golden Detailers | Luxury Mobile Auto Detailing Los Angeles",
- description: "Premium mobile auto detailing for luxury vehicles in Los Angeles. Rolls-Royce, Lamborghini, Ferrari, Mercedes-Benz. Expert ceramic coating, paint correction, interior/exterior detailing.",
- keywords: "luxury auto detailing, mobile detailing Los Angeles, Rolls-Royce detailing, ceramic coating, luxury car care, premium vehicle detailing",
- metadataBase: new URL("https://californiagoldendetailers.com"),
- alternates: {
- canonical: "https://californiagoldendetailers.com",
- },
- openGraph: {
- title: "California Golden Detailers | Luxury Auto Detailing",
- description: "Experience premium mobile detailing for the world's most exclusive vehicles.",
- url: "https://californiagoldendetailers.com",
- siteName: "California Golden Detailers",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/side-view-brand-new-car-sell_23-2148332886.jpg",
- alt: "California Golden Detailers - Luxury Auto Detailing",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "California Golden Detailers | Premium Auto Detailing",
- description: "Luxury mobile detailing for exclusive vehicles in Los Angeles.",
- images: ["http://img.b2bpic.net/free-photo/side-view-brand-new-car-sell_23-2148332886.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
+ title: 'Welcome',
+ description: 'Your conversion-focused platform',
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e6ed781..5f8d9fb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,450 +1,6 @@
-"use client";
-
-import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
-import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
-import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
-import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
-import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
-import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
-import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
-import ContactSplit from "@/components/sections/contact/ContactSplit";
-import FooterMedia from "@/components/sections/footer/FooterMedia";
-import { Sparkles, Star, Award, Clock, ChevronRight, Heart } from "lucide-react";
-
-export default function HomePage() {
+export default function Home() {
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
);
-}
\ No newline at end of file
+}