7-DaysBarber-app/ │ ├── dist/ │ ├── assets/ │ │ └── (assets files here) │ ├── _redirects │ ├── 200.html │ ├── CNAME │ ├── index.html │ ├── logo_can.ico │ ├── products.json │ └── vite.svg │ ├── node_modules/ # (node_modules directory) │ ├── public/ │ ├── _redirects │ ├── 200.html │ ├── CNAME │ ├── logo_can.ico │ ├── products.json │ └── vite.svg │ ├── src/ │ ├── assets/ │ │ └── (assets files here) │ ├── Cards/ │ │ └── (cards related files here) │ ├── components/ │ │ ├── About/ │ │ │ └── (about component files here) │ │ ├── Appointment/ │ │ │ └── (appointment component files here) │ │ ├── Banner/ │ │ │ └── (banner component files here) │ │ ├── Checkout/ │ │ │ └── (checkout component files here) │ │ ├── Excellent/ │ │ │ └── (excellent component files here) │ │ ├── Footer/ │ │ │ └── (footer component files here) │ │ ├── Hero/ │ │ │ └── (hero component files here) │ │ ├── Login/ │ │ │ └── (login component files here) │ │ ├── MeetBarber/ │ │ │ └── (meetbarber component files here) │ │ ├── Navbar/ │ │ │ └── (navbar component files here) │ │ ├── PriceList/ │ │ │ └── (pricelist component files here) │ │ ├── Products/ │ │ │ └── (products component files here) │ │ ├── Reason/ │ │ │ └── (reason component files here) │ │ ├── Registration/ │ │ │ └── (registration component files here) │ │ ├── Services/ │ │ │ └── (services component files here) │ │ ├── ShowLocation/ │ │ │ └── (showlocation component files here) │ │ ├── TimeTable/ │ │ │ └── (timetable component files here) │ │ └── Welcome/ │ │ └── (welcome component files here) │ ├── contextProvider/ │ │ └── (context API files here) │ ├── custom_css/ │ │ └── (custom css files here) │ ├── firebase/ │ │ └── (firebase files here) │ ├── Hooks/ │ │ ├── useAxios/ │ │ │ └── (useAxios files here) │ │ ├── useBooking/ │ │ │ └── (useBooking files here) │ │ ├── useProducts/ │ │ │ └── (useProducts files here) │ │ └── useReview/ │ │ └── (useReview files here) │ ├── Layouts/ │ │ ├── Appointment/ │ │ │ └── (appointment layout files here) │ │ ├── CareerLayout/ │ │ │ └── (career layout files here) │ │ ├── CartLayout/ │ │ │ └── (cart layout files here) │ │ ├── Details/ │ │ │ └── (details layout files here) │ │ ├── DonationLayout/ │ │ │ └── (donation layout files here) │ │ ├── Home/ │ │ │ └── (home layout files here) │ │ ├── MainLayout/ │ │ │ └── (main layout files here) │ │ ├── MyService/ │ │ └── (my service layout files here) │ └── Routes/ │ └── (routes files here) │ ├── .gitignore # Git ignore file ├── package.json # NPM dependencies and scripts ├── README.md # Project documentation └── tsconfig.json # TypeScript configuration