Skip to content

Commit

Permalink
Fix Canonical
Browse files Browse the repository at this point in the history
  • Loading branch information
rdp77 committed Oct 31, 2023
1 parent f7c60d7 commit 9775b3f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/awards-certification/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ const certificationColumn = {

export const metadata: Metadata = {
title: 'Awards & Certification | ' + WEBSITE_NAME,
alternates: {
canonical: 'awards-certification'
},
}

export default function AwardsPage() {
Expand Down
3 changes: 3 additions & 0 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import {WEBSITE_NAME} from "@/data/constant/summary";

export const metadata: Metadata = {
title: 'Contact | ' + WEBSITE_NAME,
alternates: {
canonical: 'contact'
},
}

export default function ContactPage() {
Expand Down
3 changes: 3 additions & 0 deletions src/app/portfolio/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import {WEBSITE_NAME} from "@/data/constant/summary";

export const metadata: Metadata = {
title: 'Portfolio | ' + WEBSITE_NAME,
alternates: {
canonical: 'portfolio'
},
}

export default function PortfolioPage() {
Expand Down
3 changes: 3 additions & 0 deletions src/app/resume/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ const educationColumn = {

export const metadata: Metadata = {
title: 'Resume | ' + WEBSITE_NAME,
alternates: {
canonical: 'resume'
},
}

export default function ResumePage() {
Expand Down

0 comments on commit 9775b3f

Please sign in to comment.