Added dummy content and deployment things

This commit is contained in:
2026-04-05 00:09:58 +02:00
parent bebe21446d
commit ad94655967
26 changed files with 1000 additions and 357 deletions

View File

@@ -1,3 +1,11 @@
import { Routes } from '@angular/router';
import { AboutComponent } from '../pages/about/about.component';
import { Contact } from '../pages/contact/contact';
import { Home } from '../pages/home/home';
export const routes: Routes = [];
export const routes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: Home },
{ path: 'about', component: AboutComponent },
{ path: 'contact', component: Contact },
];