From 058d7b05f352d7678b2f453e49bc175d85e26333 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 23:40:02 +0000 Subject: [PATCH] Switch to version 1: remove src/app/barber-dashboard/page.tsx --- src/app/barber-dashboard/page.tsx | 179 ------------------------------ 1 file changed, 179 deletions(-) delete mode 100644 src/app/barber-dashboard/page.tsx diff --git a/src/app/barber-dashboard/page.tsx b/src/app/barber-dashboard/page.tsx deleted file mode 100644 index dcfff01..0000000 --- a/src/app/barber-dashboard/page.tsx +++ /dev/null @@ -1,179 +0,0 @@ -"use client"; - -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import HeroLogo from '@/components/sections/hero/HeroLogo'; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Calendar, User, Clock, BarChart3, Activity, MessageSquare, Layers, Lock, Sparkles, Zap, Star, Mail } from 'lucide-react'; - -export default function BarberDashboardPage() { - const navItems = [ - { name: "Dashboard", id: "/barber-dashboard" }, - { name: "Features", id: "#features" }, - { name: "Analytics", id: "#analytics" }, - { name: "Reviews", id: "#reviews" }, - { name: "Contact", id: "#contact" } - ]; - - const features = [ - { - title: "Appointment Management", description: "Seamlessly book, reschedule, and manage client appointments with an intuitive calendar view.", icon: Calendar, - }, - { - title: "Client Management", description: "Maintain detailed client profiles, service history, and preferences for a personalized experience.", icon: User, - }, - { - title: "Schedule Management", description: "Efficiently organize your daily, weekly, and monthly schedule, block out time, and manage staff availability.", icon: Clock, - }, - { - title: "Revenue Tracking", description: "Monitor sales, track payments, and generate financial reports to keep an eye on your barbershop's earnings.", icon: BarChart3, - }, - { - title: "Performance Analytics", description: "Gain insights into booking trends, client retention, and service popularity with comprehensive analytics.", icon: Activity, - }, - { - title: "Reviews Management", description: "Collect, display, and respond to client reviews to build trust and improve your online reputation.", icon: MessageSquare, - }, - { - title: "Portfolio Management", description: "Showcase your best work with an integrated digital portfolio to attract new clients.", icon: Layers, - }, - { - title: "Availability Control", description: "Set specific working hours, break times, and days off to manage your availability with ease.", icon: Lock, - }, - ]; - - const metrics = [ - { id: "1", value: "$25K", title: "Total Revenue", description: "Generated in the last 30 days." }, - { id: "2", value: "500+", title: "Appointments Booked", description: "This month across all barbers." }, - { id: "3", value: "90%", title: "Client Retention", description: "Rate for repeat customers." }, - ]; - - const testimonials = [ - { - id: "1", name: "John D. Barber", role: "Owner, The Gents Place", quote: "This dashboard changed everything! Appointments are a breeze, and I finally have a clear view of my revenue.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image5.avif", imageAlt: "John D. Barber", title: "Revolutionary Business Tool" - }, - { - id: "2", name: "Maria C. Styles", role: "Master Barber", quote: "Client management is so much easier. I can see their history and preferences instantly, making every cut perfect.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image6.avif", imageAlt: "Maria C. Styles", title: "A Must-Have for Barbers" - }, - { - id: "3", name: "David L. Cutts", role: "Freelance Barber", quote: "The availability control and schedule management features are a lifesaver. I can finally balance work and life.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image7.avif", imageAlt: "David L. Cutts", title: "Improved Work-Life Balance" - } - ]; - - const footerColumns = [ - { - title: "Product", items: [ - { label: "Dashboard", href: "/barber-dashboard" }, - { label: "Features", href: "#features" }, - { label: "Pricing", href: "#" }, - ], - }, - { - title: "Resources", items: [ - { label: "Support", href: "#" }, - { label: "Blog", href: "#" }, - { label: "FAQ", href: "#" }, - ], - }, - { - title: "Company", items: [ - { label: "About Us", href: "#" }, - { label: "Contact", href: "#contact" }, - { label: "Careers", href: "#" }, - ], - }, - ]; - - return ( - - - -
- -
-
- -
-
- -
-
- -
- -
- ); -}