@willgmbr
https://developer.chrome.com/docs/ai
https://web.dev/baseline
import { bootstrapApplication } from '@angular/platform-browser'; @Component({ selector: 'hello-world', standalone: true, template: `Hello {{ world }}` }) export class HelloWorld { world = "World"; } bootstrapApplication(HelloWorld);