Nzoni docs
  • Getting Started
  • Angular
    • Project Structure
    • Authentication, Magic Link and Google Auth
    • Landing page
    • Payments and Plans
    • Blog and articles
    • User Dashboard
    • Admin Dashboard
    • SEO & SSR
    • Deploy Angular Project
  • Nest.js
    • Project Structure
    • Authentication, Google auth and Magic link
    • Blogposts
    • Plans
    • Stripe Payment
    • Email and Templates
    • Database and Migration
    • Image File upload
    • Users
    • Deploy Nest.js project
  • Node.js/MongoDB
    • Project structure
    • API endpoints
  • Angular / Firebase / Node.js
  • Create first and default plan
  • Create an Admin User
  • Support
  • Licenses
Powered by GitBook
On this page
  1. Angular

Admin Dashboard

In this chapter, we will go through the structure of the Admin module of Nzoni boilerplate and give you an overview of how components are structured.

├── node_modules
├── src
│   ├── app  
│   │  ├── admin
│   │  │   ├── components
│   │  │   │   ├── account               # User profil management 
│   │  │   │   ├── blog-post             # Articles management
│   │  │   │   ├── overview                    
│   │  │   │   ├── plans                 # Plans and Subscriptions management
│   │  │   │   ├── users                 # Users management
│   │  │   ├── admin-routing.module.ts
│   │  │   ├── admin.component.html
│   │  │   ├── admin.component.scss
│   │  │   ├── admin.component.ts
│   │  │   ├── admin.module.ts
PreviousUser DashboardNextSEO & SSR

Last updated 1 year ago