import { Component } from '@angular/core'; @Component({ selector: 'app-home', standalone: true, template: `

Analog

The fullstack meta-framework for Angular!

For guides on how to customize this project, visit the Analog documentation

`, styles: [ ` .logo { will-change: filter; } .logo:hover { filter: drop-shadow(0 0 2em #646cffaa); } .read-the-docs { color: #888; } `, ], }) export default class HomeComponent { count = 0; increment() { this.count++; } }