Nano Banana Pro
Agent skill for nano-banana-pro
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
SIEMPRE HABLAR Y RESPONDER EN ESPAÑOL.
SIEMPRE HABLAR Y RESPONDER EN ESPAÑOL.
Todas las interacciones, explicaciones, mensajes de commit, documentación y comunicación con el usuario DEBEN estar en español.
This is an Astro project named "astro-mantencionnaval" configured with Tailwind CSS v4. The project uses Bun as its package manager and runtime.
All commands use Bun as the package manager:
bun installbun dev (runs at localhost:4321)bun build (outputs to ./dist/)bun previewbun astro ... (e.g., bun astro add, bun astro check)@tailwindcss/vite)astro.config.mjs: Astro configuration with Tailwind Vite plugin integrationtsconfig.json: Extends astro/tsconfigs/strictsrc/styles/global.css: Tailwind CSS import point using @import "tailwindcss"src/ ├── assets/ # SVG and static assets ├── layouts/ # Layout components (Layout.astro) ├── pages/ # File-based routing (index.astro) └── styles/ # Global styles (global.css)
This project uses Tailwind CSS v4 which has a different configuration approach than v3:
tailwind.config.js file (v4 uses CSS-based configuration)@import "tailwindcss" in src/styles/global.cssastro.config.mjs rather than PostCSS pluginLayout.astro as the base layout with <slot /> for content injectionsrc/pages/ with automatic file-based routing--- delimiters for frontmatter script sections