changed font awesome package link

This commit is contained in:
2024-05-04 00:19:37 +05:30
parent e0fc82fa28
commit 3212a81a58
2 changed files with 8 additions and 6 deletions
+5 -5
View File
@@ -7,11 +7,11 @@ import { BlogComponent } from './blog/blog.component';
import { ContactComponent } from './contact/contact.component';
const routes: Routes = [
{ path: '', component: AboutComponent, title: "Bangara Raju" },
{ path: 'resume', component: ResumeComponent, title: "Bangara Raju - Resume" },
{ path: 'projects', component: ProjectsComponent, title: "Bangara Raju - Projects" },
{ path: 'weblog', component: BlogComponent, title: "Bangara Raju - Posts" },
{ path: 'contact', component: ContactComponent, title: "Bangara Raju - Contact" },
{ path: '', component: AboutComponent, title: "Bangara Raju Kottedi" },
{ path: 'resume', component: ResumeComponent, title: "Bangara Raju Kottedi - Resume" },
{ path: 'projects', component: ProjectsComponent, title: "Bangara Raju Kottedi - Projects" },
{ path: 'weblog', component: BlogComponent, title: "Bangara Raju Kottedi - Posts" },
{ path: 'contact', component: ContactComponent, title: "Bangara Raju Kottedi - Contact" },
{ path: '**', redirectTo: '/'}
];