5 Commits

Author SHA1 Message Date
46943ba651 Update src/app/page.tsx 2026-01-22 21:30:01 +00:00
7d4ed063ed Update src/app/layout.tsx 2026-01-22 21:30:00 +00:00
9d91a467f0 Update src/app/blog/page.tsx 2026-01-22 21:29:59 +00:00
a36cd28bde Update src/app/page.tsx 2026-01-22 21:26:54 +00:00
408b31e2d4 Update src/app/blog/page.tsx 2026-01-22 21:26:53 +00:00
3 changed files with 11 additions and 10 deletions

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, {
method: "GET", headers: {
"Content-Type": "application/json"},
"Content-Type": "application/json"
},
});
if (response.ok) {
@@ -154,4 +155,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1262,4 +1262,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,8 +1,8 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
@@ -37,17 +37,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="A Detailing"
<HeroSplit
title="A Detailing"
description="Premium auto detailing services in San Diego, near SDSU. Expert hand-washing, polishing, and protective coatings for cars that shine."
background={{ variant: "glowing-orb" }}
buttons={[
{ text: "Book Your Appointment", href: "#contact" },
{ text: "Learn More", href: "#services" }
]}
imageSrc="https://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg"
imageAlt="Professional auto detailing showcase"
showDimOverlay={true}
logoLineHeight={1.15}
imagePosition="right"
/>
</div>
@@ -194,4 +194,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}