Add src/app/blackout-times/page.tsx

This commit is contained in:
2026-03-25 00:32:25 +00:00
parent e7fe183a29
commit 65a6db7503

View File

@@ -0,0 +1,75 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram, Twitter } from "lucide-react";
export default function BlackoutTimesPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "home"},
{
name: "Services", id: "services"},
{
name: "Why Us", id: "why-us"},
{
name: "Testimonials", id: "testimonials"},
{
name: "FAQ", id: "faq"},
{
name: "Manage Availability", id: "blackout-times"}
]}
button={{
text: "Schedule Now", href: "#contact"}}
brandName="Detail Pros"
/>
</div>
<div className="min-h-[60vh] flex flex-col justify-center items-center py-20 px-4 text-center">
<h1 className="text-4xl md:text-5xl font-bold mb-4">Manage Service Availability</h1>
<p className="text-lg md:text-xl text-foreground/80 max-w-2xl">Use this interface to block out specific dates and times when services are not available for booking.</p>
<div className="mt-10 p-6 bg-card rounded-lg shadow-lg max-w-md w-full">
<p className="text-foreground/70">Blackout time slot management interface will be integrated here.</p>
{/* Placeholder for actual time slot management UI */}
</div>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Detail Pros"
copyrightText="© 2024 Detail Pros. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#", ariaLabel: "Instagram"},
{
icon: Facebook,
href: "#", ariaLabel: "Facebook"},
{
icon: Twitter,
href: "#", ariaLabel: "Twitter"},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}