What problem does it solve? Setting up a new Next.js frontend from scratch involves repetitive decisions about folder structure, dependency selection, environment configuration, and wiring authentication and state providers into the root layout. This Skill codifies those decisions into a canonical, repeatable setup so every project starts with the same conventions. ## Core Features & Use Cases - Dependency Installation: Installs Ant Design, antd-style, @ant-design/nextjs-registry, axios, js-cookie, and redux-actions with their TypeScript types. - Canonical Folder Structure: Defines the src/ layout with route groups for auth and dashboard pages, components, HOCs, providers, and utilities. - Auth & HTTP Plumbing: Provides a canonical axiosInstance with token interceptors, a withAuth HOC for route protection, and a composed AppProviders tree wired into the root layout with AntdRegistry. - Use Case: When starting the SafeGuard frontend, use this Skill to scaffold the entire Next.js app skeleton, configure NEXT_PUBLIC_API_URL, and have login-protected dashboard pages ready for feature development. ## Quick Start Ask the AI to scaffold the SafeGuard Next.js project with the standard folder structure, dependencies, and root layout providers.