Skip to content

Commit

Permalink
Adding coming soon page
Browse files Browse the repository at this point in the history
  • Loading branch information
rotirk20 committed Aug 25, 2024
1 parent a818d69 commit edded70
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 478 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smetovi",
"version": "0.0.0",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
5 changes: 4 additions & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HomeComponent } from './pages/home/home.component';

const routes: Routes = [];
const routes: Routes = [
{ path: '', component: HomeComponent}
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
Loading

0 comments on commit edded70

Please sign in to comment.