Skip to content

Commit

Permalink
feat: add new redirects for newsletter, CV, resume, and blog pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradumnasaraf committed Jan 13, 2025
1 parent f42e0a0 commit 49ed327
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,29 @@ const nextConfig = {
{
source: '/monitoring',
destination: 'https://Pradumnasaraf.github.io/Monitoring',
permanent: true, // Permanent redirect (301)
permanent: true,
},
];
{
source: '/newsletter',
destination: 'https://pradumnasaa.substack.com',
permanent: true,
},
{
source: '/cv',
destination: 'https://www.canva.com/design/DAF_kKnj9WI/IT8NdwVQlzRK3DaMmXm18A/edit?utm_content=DAF_kKnj9WI&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton',
permanent: true,
},
{
source: '/resume',
destination: 'https://www.canva.com/design/DAF_kKnj9WI/IT8NdwVQlzRK3DaMmXm18A/edit?utm_content=DAF_kKnj9WI&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton',
permanent: true,
},
{
source: '/blog',
destination: 'https://blog.pradumnasaraf.dev',
permanent: true,
}
]
},
};

Expand Down

0 comments on commit 49ed327

Please sign in to comment.