first pass - kryz inspired

This commit is contained in:
2026-06-10 18:34:23 +00:00
parent 3063d01ec5
commit 771e1e166f
53 changed files with 10521 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
import { Routes } from '@angular/router';
export const routes: Routes = [
{ path: '', redirectTo: '/', pathMatch: 'full' },
{
path: '',
loadComponent: () =>
import('./hero/hero.component').then((m) => m.HeroComponent),
},
{
path: 'about',
loadComponent: () =>
import('./about/about.component').then((m) => m.AboutComponent),
},
{
path: 'schedule',
loadComponent: () =>
import('./schedule/schedule.component').then((m) => m.ScheduleComponent),
},
{
path: 'donate',
loadComponent: () =>
import('./donate/donate.component').then((m) => m.DonateComponent),
},
{
path: 'events',
loadComponent: () =>
import('./events/events.component').then((m) => m.EventsComponent),
},
{
path: 'contact',
loadComponent: () =>
import('./contact/contact.component').then((m) => m.ContactComponent),
},
{ path: '**', redirectTo: '' },
];