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>