17 Commits

Author SHA1 Message Date
d7b48a7993 Update src/app/schedule/page.tsx 2026-03-25 01:35:30 +00:00
4232caefea Update src/app/page.tsx 2026-03-25 01:35:29 +00:00
9e6a196464 Update src/app/blackout-times/page.tsx 2026-03-25 01:35:29 +00:00
0bc1226146 Update src/app/appointments/page.tsx 2026-03-25 01:35:29 +00:00
f5e4e0bb1f Update src/app/admin/dashboard/page.tsx 2026-03-25 01:35:28 +00:00
1f51b2ac23 Merge version_8 into main
Merge version_8 into main
2026-03-25 01:30:56 +00:00
4f3e114539 Update src/app/page.tsx 2026-03-25 01:30:50 +00:00
14bd19e1f4 Merge version_7 into main
Merge version_7 into main
2026-03-25 01:23:32 +00:00
464bfbd288 Update src/app/page.tsx 2026-03-25 01:23:29 +00:00
38d37a3ef9 Merge version_6 into main
Merge version_6 into main
2026-03-25 01:12:23 +00:00
3b52fa1040 Update src/app/page.tsx 2026-03-25 01:12:20 +00:00
ef595e7125 Merge version_5 into main
Merge version_5 into main
2026-03-25 01:06:19 +00:00
3266c1a667 Update src/app/schedule/page.tsx 2026-03-25 01:06:16 +00:00
6e170834e1 Update src/app/page.tsx 2026-03-25 01:06:15 +00:00
40b42be76c Update src/app/blackout-times/page.tsx 2026-03-25 01:06:15 +00:00
313b9d9320 Update src/app/appointments/page.tsx 2026-03-25 01:06:14 +00:00
a66cf56a59 Merge version_4 into main
Merge version_4 into main
2026-03-25 01:01:25 +00:00
5 changed files with 52 additions and 46 deletions

View File

@@ -11,8 +11,8 @@ export default function AdminDashboardPage() {
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumLarge" contentWidth="compact"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="flat" primaryButtonStyle="flat"

View File

@@ -12,8 +12,8 @@ export default function AppointmentsPage() {
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumLarge" contentWidth="compact"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="flat" primaryButtonStyle="flat"
@@ -25,13 +25,13 @@ export default function AppointmentsPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/#services" }, { name: "Services", id: "#services" },
{ name: "Why Us", id: "/#why-us" }, { name: "Why Us", id: "#why-us" },
{ name: "FAQ", id: "/#faq" }, { name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" } { name: "Appointments", id: "/appointments" }
]} ]}
button={{ button={{
text: "Schedule Now", href: "/#contact" text: "Schedule Now", href: "/schedule"
}} }}
brandName="Detail Pros" brandName="Detail Pros"
/> />

View File

@@ -12,8 +12,8 @@ export default function BlackoutTimesPage() {
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumLarge" contentWidth="compact"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="flat" primaryButtonStyle="flat"
@@ -25,18 +25,20 @@ export default function BlackoutTimesPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", id: "home"}, name: "Home", id: "/"},
{ {
name: "Services", id: "services"}, name: "Services", id: "#services"},
{ {
name: "Why Us", id: "why-us"}, name: "Why Us", id: "#why-us"},
{ {
name: "FAQ", id: "faq"}, name: "FAQ", id: "#faq"},
{ {
name: "Manage Availability", id: "blackout-times"} name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "#contact"}} text: "Schedule Now", href: "/schedule"}}
brandName="Detail Pros" brandName="Detail Pros"
/> />
</div> </div>

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
@@ -18,8 +18,8 @@ export default function LandingPage() {
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumLarge" contentWidth="compact"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="flat" primaryButtonStyle="flat"
@@ -31,18 +31,20 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", id: "home"}, name: "Home", id: "/"},
{ {
name: "Services", id: "services"}, name: "Services", id: "#services"},
{ {
name: "Why Us", id: "why-us"}, name: "Why Us", id: "#why-us"},
{ {
name: "FAQ", id: "faq"}, name: "FAQ", id: "#faq"},
{ {
name: "Manage Availability", id: "blackout-times"} name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "#contact"}} text: "Schedule Now", href: "/schedule"}}
brandName="Detail Pros" brandName="Detail Pros"
/> />
</div> </div>
@@ -84,28 +86,28 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
heading={[ heading={[
{ {
type: "text", content: "About Our Dedicated Student Team"}, type: "text", content: "Were two young high school freshmen who take pride in delivering top-quality detailing with a personal touch. What sets us apart isnt just our attention to detail—its the way we treat every client with honesty, respect, and care. We believe that great service starts with trust, which is why we never ask for payment until youre completely satisfied with the results. Even at a young age, weve built a reputation for being reliable, hardworking, and genuinely passionate about what we do. Every car we work on gets our full effort, as if it were our own. We enjoy transforming vehicles and seeing the difference a clean, polished finish can make—not just for the car, but for its owner too. Our goal is simple: to provide a professional-level clean while building real connections with our customers. Were always learning, improving, and pushing ourselves to be better with every job. When you choose us, youre not just getting a service—youre supporting two motivated students who care deeply about doing things the right way."},
]} ]}
headingClassName="text-xs text-foreground/80 leading-relaxed max-w-xl mx-auto"
containerClassName="max-w-3xl mx-auto"
/> />
</div> </div>
<div id="why-us" data-section="why-us"> <div id="why-us" data-section="why-us">
<FeatureCardSix <FeatureCardThree
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: 1, id: "interior-detail", title: "Precision Interior Detailing", description: "From vacuuming every crumb to polishing surfaces and conditioning leather, we ensure your car's interior feels fresh and pristine.", imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-red-luxury-sport-car_181624-25467.jpg"},
title: "Precision Interior Detailing", description: "From vacuuming every crumb to polishing surfaces and conditioning leather, we ensure your car's interior feels fresh and pristine.", imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-red-luxury-sport-car_181624-25467.jpg"},
{ {
id: 2, id: "exterior-wash-wax", title: "Spotless Exterior Wash & Wax", description: "Our exterior service includes a thorough wash, paint decontamination, wheel cleaning, tire dressing, and a durable wax for lasting shine and protection.", imageSrc: "http://img.b2bpic.net/free-photo/car-polishing-process-washing_23-2149547517.jpg"},
title: "Spotless Exterior Wash & Wax", description: "Our exterior service includes a thorough wash, paint decontamination, wheel cleaning, tire dressing, and a durable wax for lasting shine and protection.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-dusting_23-2149172885.jpg"},
{
id: 3,
title: "Engine Bay Revitalization", description: "We carefully clean and dress your engine bay, removing grime and leaving it looking as good as new, enhancing your vehicle's overall presentation.", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-examining-car-engine_1170-1357.jpg"},
]} ]}
title="Our Promise: Meticulous Care & Guaranteed Satisfaction" title="Our Promise: Meticulous Care & Guaranteed Satisfaction"
description="We don't just clean cars; we restore them. Our dedicated student team adheres to a strict detailing regimen, ensuring every crevice and surface shines with perfection. Your satisfaction is our top priority, and we stand by the quality of our work." description="We don't just clean cars; we restore them. Our dedicated student team adheres to a strict detailing regimen, ensuring every crevice and surface shines with perfection. Your satisfaction is our top priority, and we stand by the quality of our work."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
className="py-12 md:py-16"
/> />
</div> </div>
@@ -117,35 +119,35 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: "standard", badge: "STANDARD DETAIL", badgeIcon: Sparkles, id: "standard", badge: "STANDARD DETAIL", badgeIcon: Sparkles,
price: "Starting at $179", subtitle: "Best for regular maintenance.", buttons: [ price: "Starting at $129", subtitle: "Best for regular maintenance.", buttons: [
{ {
text: "Book Standard", href: "#contact" text: "Book Standard", href: "#contact"
}, },
], ],
features: [ features: [
"Full interior and exterior clean", "Vacuum, wipe-down, windows, wash", "Light dirt and salt removal", "*Final price depends on vehicle size and condition." "Full interior and exterior clean", "Vacuum, wipe-down, windows, wash", "Light dirt and salt removal", "Price may be adjusted for extra large or exceptionally dirty vehicles."
], ],
}, },
{ {
id: "enhanced", badge: "ENHANCED DETAIL", badgeIcon: Shield, id: "enhanced", badge: "ENHANCED DETAIL", badgeIcon: Shield,
price: "Starting at $219", subtitle: "Most popular, best value for most vehicles.", buttons: [ price: "Starting at $199", subtitle: "Most popular, best value for most vehicles.", buttons: [
{ {
text: "Book Enhanced", href: "#contact" text: "Book Enhanced", href: "#contact"
}, },
], ],
features: [ features: [
"Every perk from Standard detail", "Deeper interior cleaning (seats, carpets, buildup, and grime)", "More detailed exterior finish and shine", "*Final price depends on vehicle size and condition." "Everything in Standard", "Deeper interior cleaning (seats, carpets, buildup, and grime)", "More detailed exterior finish and shine", "Price may be adjusted for extra large or exceptionally dirty vehicles."
], ],
}, },
{ {
id: "deep", badge: "DEEP DETAIL", badgeIcon: Award, id: "deep", badge: "DEEP DETAIL", badgeIcon: Award,
price: "Starting at $289", subtitle: "Best for heavily used or very dirty cars.", buttons: [ price: "Starting at $249", subtitle: "Best for heavily used or very dirty cars.", buttons: [
{ {
text: "Book Deep", href: "#contact" text: "Book Deep", href: "#contact"
}, },
], ],
features: [ features: [
"Everything in Enhanced", "Heavy stain removal + deep extraction", "Full interior reset + high detailed finish", "*Final price depends on vehicle size and condition." "Everything in Enhanced", "Heavy stain removal + deep extraction", "Full interior reset + high detailed finish", "Price may be adjusted for extra large or exceptionally dirty vehicles."
], ],
}, },
]} ]}

View File

@@ -30,8 +30,8 @@ export default function SchedulePage() {
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumLarge" contentWidth="compact"
sizing="largeSmallSizeMediumTitles" sizing="medium"
background="circleGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="flat" primaryButtonStyle="flat"
@@ -42,10 +42,12 @@ export default function SchedulePage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "Services", id: "#services" },
{ name: "Why Us", id: "why-us" }, { name: "Why Us", id: "#why-us" },
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" },
{ name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "/schedule"}} text: "Schedule Now", href: "/schedule"}}