A professional photography studio website built with React, TypeScript, and Tailwind CSS.
- Install dependencies:
npm install
Estudio-Fotografico-Artiles/
├── public/
│ ├── index.html
│ └── favicon.ico (opcional, si tienes uno)
├── src/
│ ├── assets/
│ │ ├── images/
│ │ │ └── logo.png (el logo referenciado en el código)
│ │ └── styles/
│ │ └── tailwind.css (configuración de Tailwind CSS)
│ ├── components/
│ │ ├── Header.tsx
│ │ ├── Footer.tsx
│ │ ├── Carousel.tsx
│ │ ├── About.tsx
│ │ ├── Services.tsx
│ │ ├── Packages.tsx
│ │ ├── Gallery.tsx
│ │ ├── Testimonials.tsx
│ │ ├── Contact.tsx
│ │ ├── WhatsappButton.tsx
│ │ ├── ShareModal.tsx
│ │ ├── PrivacyModal.tsx
│ │ └── TermsModal.tsx
│ ├── data/
│ │ ├── carouselImages.ts
│ │ ├── services.ts
│ │ ├── testimonials.ts
│ │ ├── galleryImages.ts
│ │ └── packages.ts
│ ├── hooks/
│ │ └── useScroll.ts
│ ├── types/
│ │ ├── index.ts
│ ├── pages/
│ │ └── Home.tsx
│ ├── App.tsx
│ ├── main.tsx
│ └── index.css
├── tailwind.config.js
├── tsconfig.json
├── package.json
└── README.md