10 Commits

Author SHA1 Message Date
71a6b5d465 Update src/app/globals.css 2026-01-22 21:44:46 +00:00
d8d28420ce Update src/app/page.tsx 2026-01-22 21:34:41 +00:00
1edff1ec5b Update src/app/layout.tsx 2026-01-22 21:34:41 +00:00
12ada74591 Update src/app/globals.css 2026-01-22 21:34:40 +00:00
974175ee07 Update src/app/blog/page.tsx 2026-01-22 21:34:39 +00:00
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
4 changed files with 42 additions and 39 deletions

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
type BlogPost = {
id: string;
@@ -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) {
@@ -85,7 +86,7 @@ export default function BlogPage() {
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="sharp"
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="circleGradient"
@@ -96,15 +97,16 @@ export default function BlogPage() {
>
<ReactLenis root>
<div className="min-h-screen bg-background">
<NavbarLayoutFloatingInline
brandName="A Detailing"
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/home" },
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Why Us", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Book Now", href: "#contact" }}
brandName="A Detailing"
bottomLeftText="San Diego, CA"
bottomRightText="hello@adetailing.com"
/>
{isLoading ? (
@@ -154,4 +156,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -4,21 +4,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #6139e6;;
/* --background: #ffffff;;
--card: #f5f5f5;;
--foreground: #1a1a1a;;
--primary-cta: #7c3aed;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;; */
--accent: #a78bfa;;
--background-accent: #ede9fe;; */
--background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #6139e6;;
--background: #ffffff;;
--card: #f5f5f5;;
--foreground: #1a1a1a;;
--primary-cta: #7c3aed;;
--secondary-cta: #ffffff;;
--accent: #6139e6;;
--background-accent: #b3a8e8;;
--accent: #a78bfa;;
--background-accent: #ede9fe;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -578,7 +578,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-source-code-pro), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-source-code-pro), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Source_Code_Pro } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceCodePro = Source_Code_Pro({
variable: "--font-source-code-pro", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceCodePro.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -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 NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
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';
@@ -15,7 +15,7 @@ export default function LandingPage() {
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="sharp"
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="circleGradient"
@@ -25,29 +25,30 @@ export default function LandingPage() {
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="A Detailing"
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "services" },
{ name: "Why Us", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Book Now", href: "#contact" }}
brandName="A Detailing"
bottomLeftText="San Diego, CA"
bottomRightText="hello@adetailing.com"
/>
</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 +195,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}