feat: Initialize Angular project with Tailwind CSS

Sets up the fundamental structure for the AURORA LUXE TRAVEL Angular application. Includes project configuration, dependencies for Angular and Tailwind CSS, and basic HTML and TypeScript entry points. Defines static destination, experience, and testimonial data for initial use.
This commit is contained in:
Kenearos 2026-02-14 12:02:13 +01:00
parent 5650ebe79e
commit f3976872b3
18 changed files with 1021 additions and 8 deletions

12
index.tsx Normal file
View file

@ -0,0 +1,12 @@
import '@angular/compiler';
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZonelessChangeDetection } from '@angular/core';
import { AppComponent } from './src/app.component';
bootstrapApplication(AppComponent, {
providers: [
provideZonelessChangeDetection()
]
}).catch(err => console.error(err));
// AI Studio always uses an `index.tsx` file for all project types.