import { Routes } from '@angular/router';
import { HomeContentComponent } from './home/components/home-content/home-content.component';

export const routes: Routes = [
  {
    path: '',
    redirectTo: '/home',
    pathMatch: 'full',
  },
  {
    path: '',
    children: [
      {
        path: 'home',
        component: HomeContentComponent,
      },
    ],
  },
];