add nav on main

This commit is contained in:
Tykayn 2025-08-07 16:17:13 +02:00 committed by tykayn
parent 45a36f4736
commit d8443508e1
7 changed files with 83 additions and 3 deletions

View file

@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import {RouterLink} from '@angular/router';
@Component({
selector: 'app-bottom-navigation',
imports: [
RouterLink
],
templateUrl: './bottom-navigation.html',
styleUrl: './bottom-navigation.scss'
})
export class BottomNavigation {
}