Skip to content

Commit 182cf5b

Browse files
committed
add
1 parent 481b987 commit 182cf5b

File tree

15 files changed

+56
-7
lines changed

15 files changed

+56
-7
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

bash-ng/src/app/app.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<body>
1313
<app-navbar></app-navbar>
1414
<router-outlet></router-outlet>
15+
<app-footer></app-footer>
1516
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
1617
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
1718
crossorigin="anonymous"></script>

bash-ng/src/app/app.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ import { ReactiveFormsModule } from '@angular/forms';
88
import { ReactiveFormComponent } from './reactive-form/reactive-form.component';
99
import { NgClass } from '@angular/common';
1010
import { NavbarComponent } from './navbar/navbar.component';
11+
import { FooterComponent } from './footer/footer.component';
1112

1213

1314
@NgModule({
14-
declarations: [AppComponent, FormComponent, ReactiveFormComponent, NavbarComponent],
15+
declarations: [AppComponent, FormComponent, ReactiveFormComponent, NavbarComponent, FooterComponent],
1516
imports: [BrowserModule, AppRoutingModule, FormsModule, ReactiveFormsModule],
1617
providers: [],
1718
bootstrap: [AppComponent],
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<nav class="navbar navbar-dark bg-dark">
2+
<div class="container-fluid">
3+
<a class="navbar-brand" href="#">
4+
<!-- <img src="" alt="" width="30" height="24"
5+
class="d-inline-block align-text-top"> -->
6+
footer
7+
</a>
8+
</div>
9+
</nav>

0 commit comments

Comments
 (0)