mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
Update icons location
This commit is contained in:
+7
-7
@@ -107,43 +107,43 @@ const About: FC = () => {
|
||||
<h1>Contact Me</h1>
|
||||
<div className='contact'>
|
||||
<IconButton
|
||||
icon={dark ? '/light-mail.svg' : '/dark-mail.svg'}
|
||||
icon={dark ? '/icons/light-mail.svg' : '/icons/dark-mail.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('mailto:me@hazemkrimi.tech', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-github.svg' : '/dark-github.svg'}
|
||||
icon={dark ? '/icons/light-github.svg' : '/icons/dark-github.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://github.com/hazemKrimi', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-twitter.svg' : '/dark-twitter.svg'}
|
||||
icon={dark ? '/icons/light-twitter.svg' : '/icons/dark-twitter.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://twitter.com/HazemKrimi', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-linkedin.svg' : '/dark-linkedin.svg'}
|
||||
icon={dark ? '/icons/light-linkedin.svg' : '/icons/dark-linkedin.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://linkedin.com/in/hazemkrimi', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-codepen.svg' : '/dark-codepen.svg'}
|
||||
icon={dark ? '/icons/light-codepen.svg' : '/icons/dark-codepen.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://codepen.io/hazemkrimi', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-dribbble.svg' : '/dark-dribbble.svg'}
|
||||
icon={dark ? '/icons/light-dribbble.svg' : '/icons/dark-dribbble.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://dribbble.com/HazemKrimi', '_blank')}
|
||||
/>
|
||||
<IconButton
|
||||
icon={dark ? '/light-instagram.svg' : '/dark-instagram.svg'}
|
||||
icon={dark ? '/icons/light-instagram.svg' : '/icons/dark-instagram.svg'}
|
||||
width={36}
|
||||
height={36}
|
||||
onClick={() => window.open('https://instagram.com/hazemkrimi', '_blank')}
|
||||
|
||||
@@ -148,7 +148,7 @@ const BlogPost: FC<Props> = ({ source, frontMatter }) => {
|
||||
<Wrapper>
|
||||
<div className='meta'>
|
||||
<div className='back' onClick={() => router.back()}>
|
||||
<IconButton icon='/arrow-left.svg' />
|
||||
<IconButton icon='/icons/arrow-left.svg' />
|
||||
<span>Back</span>
|
||||
</div>
|
||||
<h1>{frontMatter.title}</h1>
|
||||
|
||||
@@ -79,7 +79,7 @@ const Index: FC<Props> = ({ blogPosts }) => {
|
||||
</Head>
|
||||
<Wrapper>
|
||||
<div className='back' onClick={() => router.back()}>
|
||||
<IconButton icon='/arrow-left.svg' />
|
||||
<IconButton icon='/icons/arrow-left.svg' />
|
||||
<span>Back</span>
|
||||
</div>
|
||||
<h1>Blog</h1>
|
||||
|
||||
@@ -135,7 +135,7 @@ const PortfolioProject: FC<Props> = ({ source, frontMatter }) => {
|
||||
<Wrapper>
|
||||
<div className='meta'>
|
||||
<div className='back' onClick={() => router.back()}>
|
||||
<IconButton icon='/arrow-left.svg' />
|
||||
<IconButton icon='/icons/arrow-left.svg' />
|
||||
<span>Back</span>
|
||||
</div>
|
||||
<h1>{frontMatter.title}</h1>
|
||||
|
||||
@@ -78,7 +78,7 @@ const Index: FC<Props> = ({ portfolioProjects }) => {
|
||||
</Head>
|
||||
<Wrapper>
|
||||
<div className='back' onClick={() => router.back()}>
|
||||
<IconButton icon='/arrow-left.svg' />
|
||||
<IconButton icon='/icons/arrow-left.svg' />
|
||||
<span>Back</span>
|
||||
</div>
|
||||
<h1>Portfolio</h1>
|
||||
|
||||
Reference in New Issue
Block a user