Un portfolio personal moderno y profesional desarrollado con Next.js 15, TypeScript y Tailwind CSS.
npm installnpm run devnpm run buildnpm startsrc/components/hero.tsxsrc/components/about.tsxsrc/components/experience.tsxsrc/components/projects.tsxsrc/components/contact.tsxLos colores se pueden personalizar editando las variables CSS en src/app/globals.css:
:root {
--theme-primary: #3b82f6;
--theme-secondary: #1f2937;
--theme-muted: #6b7280;
--theme-card: #ffffff;
--theme-medium: #e5e7eb;
}me/
├── src/
│ ├── app/
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
│ └── components/
│ ├── about.tsx
│ ├── contact.tsx
│ ├── documentation.tsx
│ ├── experience.tsx
│ ├── hero.tsx
│ ├── navigation.tsx
│ ├── projects.tsx
│ ├── theme-provider.tsx
│ └── theme-toggle.tsx
└── public/
└── documentacion/
├── README.md
├── INSTALACION.md
└── cloudflare_workers.mdnpm run build.next