Added a lot of components
This commit is contained in:
parent
08f8d90f3d
commit
c94493a3c5
68 changed files with 1030 additions and 8 deletions
|
|
@ -1,3 +1,31 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import {AboutPage} from "./pages/about/about.page";
|
||||
import {BlogPage} from "./pages/blog/blog.page";
|
||||
import {ProjectsPage} from "./pages/projects/projects.page";
|
||||
import {HomePage} from "./pages/home/home.page";
|
||||
import {PortfolioPage} from "./pages/portfolio/portfolio.page";
|
||||
import {ContactMePage} from "./pages/contact-me/contact-me.page";
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const routes: Routes = [
|
||||
{ path: '', component: HomePage },
|
||||
{
|
||||
path: 'about',
|
||||
component: AboutPage,
|
||||
},
|
||||
{
|
||||
path : 'portfolio',
|
||||
component: PortfolioPage,
|
||||
},
|
||||
{
|
||||
path : 'blog',
|
||||
component: BlogPage,
|
||||
},
|
||||
{
|
||||
path: 'projects',
|
||||
component: ProjectsPage,
|
||||
},
|
||||
{
|
||||
path: 'hello',
|
||||
component: ContactMePage,
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue