diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index b6f31db..f5671db 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,6 +1,6 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; -import {HomeComponent} from "./home/home.component"; +import {HomeComponent} from "./sites/home/home.component"; const routes: Routes = [ {path: "", component: HomeComponent}, diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 8af1849..6a0720a 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -4,17 +4,19 @@ import { BrowserModule } from '@angular/platform-browser'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { NavigationComponent } from './navigation/navigation.component'; +import { NavigationComponent } from './components/navigation/navigation.component'; import {MatSidenavModule} from "@angular/material/sidenav"; import {MatIconModule} from "@angular/material/icon"; import {MatButtonModule} from "@angular/material/button"; -import { HomeComponent } from './home/home.component'; +import { HomeComponent } from './sites/home/home.component'; +import { FeaturedProjectsPipe } from './pipes/featured-projects.pipe'; @NgModule({ declarations: [ AppComponent, NavigationComponent, - HomeComponent + HomeComponent, + FeaturedProjectsPipe ], imports: [ BrowserModule.withServerTransition({appId: 'serverApp'}), diff --git a/src/app/navigation/navigation.component.html b/src/app/components/navigation/navigation.component.html similarity index 75% rename from src/app/navigation/navigation.component.html rename to src/app/components/navigation/navigation.component.html index 40cb12c..757f8b8 100644 --- a/src/app/navigation/navigation.component.html +++ b/src/app/components/navigation/navigation.component.html @@ -1,9 +1,9 @@