Skip to content

Commit b59c3a4

Browse files
committed
:wq
1 parent f84b45a commit b59c3a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+265
-297
lines changed

package-lock.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"core-js": "^2.4.1",
2525
"moment": "^2.22.2",
2626
"ngx-bootstrap": "^2.0.5",
27+
"ngx-embed-video": "^0.3.0",
2728
"ngx-toastr": "^8.10.0",
2829
"primeicons": "1.0.0-beta.9",
2930
"primeng": "^6.0.2",

src/app/app-routing.module.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11

22
import { NgModule } from '@angular/core';
33
import { Routes, RouterModule } from '@angular/router';
4-
import { HomeComponent } from './home/home.component';
54
import { PublicComponent } from './public/public.component';
65
import { AlwaysAuthGuard, OnlyLoggedInUsersGuard } from './AlwaysAuthGuard ';
76

87
import { PrivateComponent } from './private/private.component';
98
import { PrivateHomeComponent } from './private/home/home.component';
109
import { PublicSigninComponent } from './public/signin/signin.component';
1110
import { PublicHomeComponent } from './public/home/home.component';
12-
import { PublicHeaderComponent } from './public/header/header.component';
1311
import { AboutComponent } from './private/about/about.component';
12+
import { GalleryComponent } from './private/gallery/gallery.component';
1413
const routes: Routes = [
15-
// { path: '', component: HomeComponent },
16-
// { path: 'home', component: HomeComponent, data: { title: 'Home | Admin Panel' } }
17-
// { path: '', redirectTo: 'sign-in', pathMatch: 'full' },
1814
{ path: '', redirectTo: 'user/home', pathMatch: 'full' },
1915
{
2016
path: '',
@@ -33,6 +29,7 @@ const routes: Routes = [
3329
{ path: '', redirectTo: 'user/home', pathMatch: 'full' },
3430
{ path: 'home', component: PrivateHomeComponent },
3531
{ path: 'about', component: AboutComponent },
32+
{ path: 'gallery', component: GalleryComponent },
3633

3734
]
3835
}

src/app/app.component.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
@import url("../../node_modules/primeng/resources/primeng.min.css"); */
44

55

6+
html, body {
7+
height: 100%;
8+
margin: 0;
9+
}

src/app/auth/auth.component.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/app/auth/auth.component.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/app/common/app-footer/app-footer.component.css

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/app/common/app-footer/app-footer.component.html

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/app/common/app-footer/app-footer.component.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/app/common/app-header/app-header.component.css

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)