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 url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {

View File

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