35 Commits

Author SHA1 Message Date
5edd07e31d Update src/app/page.tsx 2026-03-25 19:12:42 +00:00
63b98ac0f4 Update src/app/page.tsx 2026-03-25 19:11:04 +00:00
1219ad7b80 Update src/app/blackout-times/page.tsx 2026-03-25 19:11:04 +00:00
d277380e39 Update src/app/appointments/page.tsx 2026-03-25 19:11:03 +00:00
38cdd14aa5 Switch to version 13: modified src/app/schedule/page.tsx 2026-03-25 19:01:37 +00:00
88ab612d15 Switch to version 13: modified src/app/page.tsx 2026-03-25 19:01:37 +00:00
d9072d9178 Switch to version 13: modified src/app/blackout-times/page.tsx 2026-03-25 19:01:36 +00:00
88749e5930 Switch to version 13: modified src/app/appointments/page.tsx 2026-03-25 19:01:36 +00:00
5088d8cba2 Switch to version 14: modified src/app/schedule/page.tsx 2026-03-25 19:01:09 +00:00
50ff137947 Switch to version 14: modified src/app/page.tsx 2026-03-25 19:01:09 +00:00
ae1eef9ef6 Switch to version 14: modified src/app/blackout-times/page.tsx 2026-03-25 19:01:08 +00:00
b6b26b317a Switch to version 14: modified src/app/appointments/page.tsx 2026-03-25 19:01:08 +00:00
31ecb00422 Merge version_15 into main
Merge version_15 into main
2026-03-25 19:00:20 +00:00
970df4359d Update src/app/page.tsx 2026-03-25 19:00:17 +00:00
091939fda1 Update src/app/blackout-times/page.tsx 2026-03-25 19:00:16 +00:00
32329e0aae Update src/app/appointments/page.tsx 2026-03-25 19:00:16 +00:00
a95f2648ce Merge version_13 into main
Merge version_13 into main
2026-03-25 18:58:25 +00:00
ae88a9e4d5 Update src/app/page.tsx 2026-03-25 18:58:19 +00:00
981686d3ad Switch to version 13: modified src/app/schedule/page.tsx 2026-03-25 18:55:34 +00:00
04ff1e1d6b Switch to version 13: modified src/app/page.tsx 2026-03-25 18:55:34 +00:00
76a2d9497a Switch to version 13: modified src/app/blackout-times/page.tsx 2026-03-25 18:55:33 +00:00
ac18eaca5b Switch to version 13: modified src/app/appointments/page.tsx 2026-03-25 18:55:33 +00:00
974b621bc2 Merge version_14 into main
Merge version_14 into main
2026-03-25 18:55:28 +00:00
dca7a3304d Update src/app/page.tsx 2026-03-25 18:55:25 +00:00
1453627dd8 Merge version_14 into main
Merge version_14 into main
2026-03-25 18:53:25 +00:00
08d4d517fd Update src/app/schedule/page.tsx 2026-03-25 18:53:22 +00:00
bad10f3bda Update src/app/page.tsx 2026-03-25 18:53:22 +00:00
38ff919469 Update src/app/blackout-times/page.tsx 2026-03-25 18:53:21 +00:00
af79846d84 Update src/app/appointments/page.tsx 2026-03-25 18:53:21 +00:00
92066f1908 Merge version_13 into main
Merge version_13 into main
2026-03-25 18:34:00 +00:00
003b0fea48 Update src/app/schedule/page.tsx 2026-03-25 18:33:57 +00:00
cffd167521 Update src/app/page.tsx 2026-03-25 18:33:57 +00:00
32c05d93c9 Update src/app/blackout-times/page.tsx 2026-03-25 18:33:56 +00:00
377a9db766 Update src/app/appointments/page.tsx 2026-03-25 18:33:56 +00:00
1d788a65ef Merge version_12 into main
Merge version_12 into main
2026-03-25 18:28:12 +00:00
4 changed files with 32 additions and 6 deletions

View File

@@ -27,8 +27,11 @@ export default function AppointmentsPage() {
{ name: "Home", id: "/" },
{ name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-us" },
{ name: "About Us", id: "#about-student-team" },
{ name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" }
{ name: "Appointments", id: "/appointments" },
{ name: "Manage Availability", id: "/blackout-times" },
{ name: "Schedule", id: "/schedule" }
]}
button={{
text: "Schedule Now", href: "/schedule"
@@ -69,7 +72,6 @@ export default function AppointmentsPage() {
<button className="bg-green-600 text-white px-5 py-2 rounded-lg hover:bg-green-700 transition-colors shadow-md">Accept</button>
<button className="bg-red-600 text-white px-5 py-2 rounded-lg hover:bg-red-700 transition-colors shadow-md">Reject</button>
<button className="bg-blue-600 text-white px-5 py-2 rounded-lg hover:bg-blue-700 transition-colors shadow-md">Details</button>
dilutions of liquid soap or other common household products.
</div>
</div>
</div>

View File

@@ -30,12 +30,16 @@ export default function BlackoutTimesPage() {
name: "Services", id: "#services"},
{
name: "Why Us", id: "#why-us"},
{
name: "About Us", id: "#about-student-team"},
{
name: "FAQ", id: "#faq"},
{
name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
name: "Manage Availability", id: "/blackout-times"},
{
name: "Schedule", id: "/schedule"}
]}
button={{
text: "Schedule Now", href: "/schedule"}}

View File

@@ -9,6 +9,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; // New import
import { Award, Facebook, Instagram, Shield, Sparkles, Twitter } from "lucide-react";
export default function LandingPage() {
@@ -35,12 +36,16 @@ export default function LandingPage() {
name: "Services", id: "#services"},
{
name: "Why Us", id: "#why-us"},
{
name: "About Us", id: "#about-student-team"},
{
name: "FAQ", id: "#faq"},
{
name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
name: "Manage Availability", id: "/blackout-times"},
{
name: "Schedule", id: "/schedule"}
]}
button={{
text: "Schedule Now", href: "/schedule"}}
@@ -75,9 +80,9 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
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"},
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/premium-photo/foam-detergent-cleaning-leather-seat-using-brush-worker-auto-cleaning-service-clean-car-inside-car-interior-detailing_255847-7909.jpg?id=33580195"},
{
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"},
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-wash-detailing-station_1303-22322.jpg?id=8380359"},
]}
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."
@@ -87,6 +92,20 @@ export default function LandingPage() {
/>
</div>
<div id="about-student-team" data-section="about-student-team">
<MetricSplitMediaAbout
title="About our Student Team"
description="Were two dedicated freshmen with a passion for making vehicles look their absolute best. What started as a simple interest in cars quickly grew into a commitment to precision detailing and dependable service. We treat every vehicle with the same level of care and attention we would give our own, carefully cleaning, restoring, and protecting every surface. Our goal is to provide a trustworthy, high quality experience that leaves your car looking refreshed and well cared for. With a strong work ethic and a focus on customer satisfaction, we take pride in delivering results you can see and feel every time you drive."
metrics={[]} // Required but empty as per user request
useInvertedBackground={false}
mediaAnimation="none"
metricsAnimation="none"
textBoxClassName="max-w-md mx-auto"
imageSrc="http://img.b2bpic.net/premium-photo/tranquil-school-campus-with-sunlit-walkway_1254967-61051.jpg?id=327819702"
imageAlt="Outside of a school building"
/>
</div>
<div id="services" data-section="services">
<PricingCardEight
animationType="slide-up"

View File

@@ -45,6 +45,7 @@ export default function SchedulePage() {
{ name: "Home", id: "/" },
{ name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-us" },
{ name: "About Us", id: "#about-student-team" },
{ name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" },
{ name: "Manage Availability", id: "/blackout-times"}