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:
parent
5650ebe79e
commit
f3976872b3
18 changed files with 1021 additions and 8 deletions
12
index.tsx
Normal file
12
index.tsx
Normal 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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue