Skip to content

Commit

Permalink
add redirect to netlify
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoni Ian Kok committed Feb 29, 2020
1 parent 05b278d commit 1cff744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function (props) {
<div className="flex flex-col m-10 p-5" style={{backgroundColor: '#ffffff1c', mixBlendMode: 'difference'}}>
<Link href={"/about"}><a className="text-white font-sans text-lg lg:text-2xl xl:text-2xl">about</a></Link>
<Link href={"/projects"}><a className="text-white font-sans text-lg lg:text-2xl xl:text-2xl">projects</a></Link>
<a className="text-white font-sans text-lg lg:text-2xl xl:text-2xl" href="https://blog.iankok.com">blog</a>
<a className="text-white font-sans text-lg lg:text-2xl xl:text-2xl" href="/blog">blog</a>
<Link href={"/contact"}><a className="text-white font-sans text-lg lg:text-2xl xl:text-2xl">get in touch</a></Link>
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[[redirects]]
from = "/blog"
to = "https://blog.iankok.com"

0 comments on commit 1cff744

Please sign in to comment.