import { Component } from '@angular/core';
@Component({
selector: 'app-root',
standalone: true,
template: `
<h1>Welcome to {{ "{{" }} title {{ "}}" }}!</h1>
`,
styles: [`
:host {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: system-ui, sans-serif;
}
`],
})
export class AppComponent {
title = '{{ project_name }}';
}