🚀 Crear Proyecto Base: Spring Boot + Thymeleaf + SB Admin
Este proyecto base te deja un dashboard funcional usando SB Admin 2 integrado con Spring Boot y Thymeleaf. 📁 Estructura del proyecto src/main/resources/ │ ├── static/ │ ├── css/ │ ├── js/ │ ├── vendor/ │ └── img/ │ ├── templates/ │ ├── fragments/ │ │ ├── head.html │ │ ├── sidebar.html │ │ ├── navbar.html │ │ └── footer.html │ │ │ ├── layout.html │ └── dashboard.html ⚙️ Dependencias (pom.xml) Agrega esto: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> ...