import { Routes } from '@angular/router' import { SignIn } from '@/app/modules/auth/sign-in' export const Auth_ROUTES: Routes = [ { path: 'auth/sign-in', component: SignIn, data: { title: 'Sign In' }, }, ]