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

Landing page

The Nzoni boilerplate comes with preset landing page.

Here's the look of the landing page components folder

├── node_modules
├── src
│   ├── app  
│   │  ├── landing-page
│   │  │   ├── components
│   │  │   │   ├── call-to-action
│   │  │   │   ├── facts
│   │  │   │   ├── faq
│   │  │   │   ├── features
│   │  │   │   ├── hero
│   │  │   │   ├── how-it-works
│   │  │   │   ├── preview
│   │  │   │   ├── pricing
│   │  │   │   ├── testimonial
│   │  │   │   ├── trust
│   │  │   ├── term-of-service
│   │  │   ├── landing-page.component.html
│   │  │   ├── landing-page.component.scss
│   │  │   ├── landing-page.component.ts
│   │  │   ├── landing-routing.module.ts
│   │  │   ├── landing.module.ts          

Find all components in landing-page.component.html

<app-header></app-header>


<app-hero></app-hero>


<app-trust></app-trust>


<app-preview></app-preview>


<app-how-it-works id="howitworks"></app-how-it-works>


<app-features id="features"></app-features>


<app-testimonial></app-testimonial>


<app-pricing id="pricing"></app-pricing>


<app-faq></app-faq>


<app-call-to-action></app-call-to-action>


<app-facts></app-facts>


<!-- footer -->
<app-footer></app-footer>
PreviousAuthentication, Magic Link and Google AuthNextPayments and Plans

Last updated 1 year ago