mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
Add seo, improve styles for dynamic content and add types
This commit is contained in:
+31
-7
@@ -1,5 +1,6 @@
|
|||||||
import { FC, useContext } from 'react';
|
import { FC, useContext } from 'react';
|
||||||
import { DarkModeContext } from '../components/DarkMode';
|
import { DarkModeContext } from '../components/DarkMode';
|
||||||
|
import Head from 'next/head';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import IconButton from '../components/IconButton';
|
import IconButton from '../components/IconButton';
|
||||||
@@ -65,18 +66,40 @@ const About: FC = () => {
|
|||||||
const { dark } = useContext(DarkModeContext);
|
const { dark } = useContext(DarkModeContext);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content='Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
/>
|
||||||
|
<title>About | Hazem Krimi</title>
|
||||||
|
</Head>
|
||||||
<Wrapper dark={dark}>
|
<Wrapper dark={dark}>
|
||||||
<div className='content'>
|
<div className='content'>
|
||||||
<div>
|
<div>
|
||||||
<h1>About Me</h1>
|
<h1>About Me</h1>
|
||||||
<div className='about'>
|
<div className='about'>
|
||||||
<p>
|
<p>
|
||||||
I am Hazem Krimi, a Full Stack JavaScript Developer helping companies and individuals
|
I am Hazem Krimi, a Full Stack JavaScript Developer helping companies and
|
||||||
build modern web and mobile applications I am a student and a freelance full stack
|
individuals build modern web and mobile applications I am a student and a freelance
|
||||||
developer. <br></br> I have a good experience building web and cross platform mobile
|
full stack developer. <br></br> I have a good experience building web and cross
|
||||||
apps using various technologies like React, React Native, Node.js, MongoDB, Firebase
|
platform mobile apps using various technologies like React, React Native, Node.js,
|
||||||
and I am constantly exploring and learning Software Engineering to make sure I get the
|
MongoDB, Firebase and I am constantly exploring and learning Software Engineering to
|
||||||
job done faster and easier.
|
make sure I get the job done faster and easier.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -87,7 +110,7 @@ const About: FC = () => {
|
|||||||
icon={dark ? '/light-mail.svg' : '/dark-mail.svg'}
|
icon={dark ? '/light-mail.svg' : '/dark-mail.svg'}
|
||||||
width={36}
|
width={36}
|
||||||
height={36}
|
height={36}
|
||||||
onClick={() => window.open('mailto:krimihazem1@gmail.com', '_blank')}
|
onClick={() => window.open('mailto:me@hazemkrimi.tech', '_blank')}
|
||||||
/>
|
/>
|
||||||
<IconButton
|
<IconButton
|
||||||
icon={dark ? '/light-github.svg' : '/dark-github.svg'}
|
icon={dark ? '/light-github.svg' : '/dark-github.svg'}
|
||||||
@@ -132,6 +155,7 @@ const About: FC = () => {
|
|||||||
<Image src='/logo.jpg' width='auto' height='auto' layout='responsive' />
|
<Image src='/logo.jpg' width='auto' height='auto' layout='responsive' />
|
||||||
</div>
|
</div>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+48
-7
@@ -1,6 +1,9 @@
|
|||||||
import { FC } from 'react';
|
import { FC } from 'react';
|
||||||
import { getBlogPostsSlugs, getBlogPostdata } from '../../lib/blog';
|
import { getBlogPostsSlugs, getBlogPostdata } from '../../lib/blog';
|
||||||
import { useRouter } from 'next/router';
|
import { useRouter } from 'next/router';
|
||||||
|
import { MdxRemote } from 'next-mdx-remote/types';
|
||||||
|
import { MDXEmbedProvider } from 'mdx-embed';
|
||||||
|
import { GetStaticPaths, GetStaticProps } from 'next';
|
||||||
import renderToString from 'next-mdx-remote/render-to-string';
|
import renderToString from 'next-mdx-remote/render-to-string';
|
||||||
import hydrate from 'next-mdx-remote/hydrate';
|
import hydrate from 'next-mdx-remote/hydrate';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
@@ -10,7 +13,7 @@ import Head from 'next/head';
|
|||||||
import IconButton from '../../components/IconButton';
|
import IconButton from '../../components/IconButton';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
source: any;
|
source: MdxRemote.Source;
|
||||||
frontMatter: any;
|
frontMatter: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,9 +92,15 @@ const Wrapper = styled.div`
|
|||||||
p,
|
p,
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3 {
|
h3,
|
||||||
|
button {
|
||||||
margin: 0.5rem 0rem;
|
margin: 0.5rem 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p * {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -104,7 +113,37 @@ const BlogPost: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>{frontMatter.title}</title>
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content={
|
||||||
|
frontMatter.description
|
||||||
|
? frontMatter.description
|
||||||
|
: 'Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content={
|
||||||
|
frontMatter.description
|
||||||
|
? frontMatter.description
|
||||||
|
: 'Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content={`${frontMatter.title} | Hazem Krimi`} />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content={
|
||||||
|
frontMatter.tags
|
||||||
|
? frontMatter.tags.join(' ')
|
||||||
|
: 'Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<title>{frontMatter.title} | Hazem Krimi</title>
|
||||||
</Head>
|
</Head>
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<div className='meta'>
|
<div className='meta'>
|
||||||
@@ -125,7 +164,9 @@ const BlogPost: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
)}
|
)}
|
||||||
<hr />
|
<hr />
|
||||||
</div>
|
</div>
|
||||||
|
<MDXEmbedProvider>
|
||||||
<div className='content'>{content}</div>
|
<div className='content'>{content}</div>
|
||||||
|
</MDXEmbedProvider>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -133,14 +174,14 @@ const BlogPost: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
|
|
||||||
export default BlogPost;
|
export default BlogPost;
|
||||||
|
|
||||||
export async function getStaticPaths() {
|
export const getStaticPaths: GetStaticPaths = async () => {
|
||||||
const paths = getBlogPostsSlugs();
|
const paths = getBlogPostsSlugs();
|
||||||
return {
|
return {
|
||||||
paths,
|
paths,
|
||||||
fallback: false
|
fallback: false
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
export async function getStaticProps({ params }: any) {
|
export const getStaticProps: GetStaticProps = async ({ params }: any) => {
|
||||||
const blogPostContent = await getBlogPostdata(params.slug);
|
const blogPostContent = await getBlogPostdata(params.slug);
|
||||||
const { data, content } = matter(blogPostContent);
|
const { data, content } = matter(blogPostContent);
|
||||||
const mdxSource = await renderToString(content, {
|
const mdxSource = await renderToString(content, {
|
||||||
@@ -154,4 +195,4 @@ export async function getStaticProps({ params }: any) {
|
|||||||
frontMatter: data
|
frontMatter: data
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { getBlogPosts } from '../../lib/blog';
|
|||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import Card from '../../components/Card';
|
import Card from '../../components/Card';
|
||||||
import IconButton from '../../components/IconButton';
|
import IconButton from '../../components/IconButton';
|
||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
blogPosts: {
|
blogPosts: {
|
||||||
@@ -54,6 +55,28 @@ const Index: FC<Props> = ({ blogPosts }) => {
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content='Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
/>
|
||||||
|
<title>Blog | Hazem Krimi</title>
|
||||||
|
</Head>
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<div className='back' onClick={() => router.back()}>
|
<div className='back' onClick={() => router.back()}>
|
||||||
<IconButton icon='/arrow-left.svg' />
|
<IconButton icon='/arrow-left.svg' />
|
||||||
@@ -70,6 +93,7 @@ const Index: FC<Props> = ({ blogPosts }) => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+27
-2
@@ -2,10 +2,12 @@ import { FC } from 'react';
|
|||||||
import { useRouter } from 'next/router';
|
import { useRouter } from 'next/router';
|
||||||
import { getPortfolioProjects } from '../lib/portfolio';
|
import { getPortfolioProjects } from '../lib/portfolio';
|
||||||
import { getBlogPosts } from '../lib/blog';
|
import { getBlogPosts } from '../lib/blog';
|
||||||
|
import { GetStaticProps } from 'next';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import Hero from '../components/Hero';
|
import Hero from '../components/Hero';
|
||||||
import Button from '../components/Button';
|
import Button from '../components/Button';
|
||||||
import Card from '../components/Card';
|
import Card from '../components/Card';
|
||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
blogPosts: {
|
blogPosts: {
|
||||||
@@ -72,6 +74,28 @@ const Index: FC<Props> = ({ blogPosts, portfolioProjects }) => {
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content='Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
/>
|
||||||
|
<title>Hazem Krimi</title>
|
||||||
|
</Head>
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<Hero />
|
<Hero />
|
||||||
<div className='content'>
|
<div className='content'>
|
||||||
@@ -107,12 +131,13 @@ const Index: FC<Props> = ({ blogPosts, portfolioProjects }) => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Index;
|
export default Index;
|
||||||
|
|
||||||
export async function getStaticProps() {
|
export const getStaticProps: GetStaticProps = async () => {
|
||||||
const blogPosts = getBlogPosts();
|
const blogPosts = getBlogPosts();
|
||||||
const portfolioProjects = getPortfolioProjects();
|
const portfolioProjects = getPortfolioProjects();
|
||||||
return {
|
return {
|
||||||
@@ -121,4 +146,4 @@ export async function getStaticProps() {
|
|||||||
portfolioProjects
|
portfolioProjects
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
import { FC } from 'react';
|
import { FC } from 'react';
|
||||||
import { getPortfolioPorjectsSlugs, getPortfolioProjectdata } from '../../lib/portfolio';
|
import { getPortfolioPorjectsSlugs, getPortfolioProjectdata } from '../../lib/portfolio';
|
||||||
import { useRouter } from 'next/router';
|
import { useRouter } from 'next/router';
|
||||||
|
import { MdxRemote } from 'next-mdx-remote/types';
|
||||||
|
import { MDXEmbedProvider } from 'mdx-embed';
|
||||||
|
import { GetStaticPaths, GetStaticProps } from 'next';
|
||||||
import renderToString from 'next-mdx-remote/render-to-string';
|
import renderToString from 'next-mdx-remote/render-to-string';
|
||||||
import hydrate from 'next-mdx-remote/hydrate';
|
import hydrate from 'next-mdx-remote/hydrate';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
@@ -10,7 +13,7 @@ import Head from 'next/head';
|
|||||||
import IconButton from '../../components/IconButton';
|
import IconButton from '../../components/IconButton';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
source: any;
|
source: MdxRemote.Source;
|
||||||
frontMatter: any;
|
frontMatter: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,9 +83,15 @@ const Wrapper = styled.div`
|
|||||||
p,
|
p,
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3 {
|
h3,
|
||||||
|
button {
|
||||||
margin: 0.5rem 0rem;
|
margin: 0.5rem 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p * {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -95,7 +104,33 @@ const PortfolioProject: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>{frontMatter.title}</title>
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content={
|
||||||
|
frontMatter.description
|
||||||
|
? frontMatter.description
|
||||||
|
: 'Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content={
|
||||||
|
frontMatter.description
|
||||||
|
? frontMatter.description
|
||||||
|
: 'Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content={`${frontMatter.title} | Hazem Krimi`} />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content='Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
/>
|
||||||
|
<title>{frontMatter.title} | Hazem Krimi</title>
|
||||||
</Head>
|
</Head>
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<div className='meta'>
|
<div className='meta'>
|
||||||
@@ -107,7 +142,9 @@ const PortfolioProject: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
<p>{frontMatter.description}</p>
|
<p>{frontMatter.description}</p>
|
||||||
<hr />
|
<hr />
|
||||||
</div>
|
</div>
|
||||||
|
<MDXEmbedProvider>
|
||||||
<div className='content'>{content}</div>
|
<div className='content'>{content}</div>
|
||||||
|
</MDXEmbedProvider>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -115,14 +152,14 @@ const PortfolioProject: FC<Props> = ({ source, frontMatter }) => {
|
|||||||
|
|
||||||
export default PortfolioProject;
|
export default PortfolioProject;
|
||||||
|
|
||||||
export async function getStaticPaths() {
|
export const getStaticPaths: GetStaticPaths = async () => {
|
||||||
const paths = getPortfolioPorjectsSlugs();
|
const paths = getPortfolioPorjectsSlugs();
|
||||||
return {
|
return {
|
||||||
paths,
|
paths,
|
||||||
fallback: false
|
fallback: false
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
export async function getStaticProps({ params }: any) {
|
export const getStaticProps: GetStaticProps = async ({ params }: any) => {
|
||||||
const blogPostContent = await getPortfolioProjectdata(params.slug);
|
const blogPostContent = await getPortfolioProjectdata(params.slug);
|
||||||
const { data, content } = matter(blogPostContent);
|
const { data, content } = matter(blogPostContent);
|
||||||
const mdxSource = await renderToString(content, {
|
const mdxSource = await renderToString(content, {
|
||||||
@@ -136,4 +173,4 @@ export async function getStaticProps({ params }: any) {
|
|||||||
frontMatter: data
|
frontMatter: data
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
|
|||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import Card from '../../components/Card';
|
import Card from '../../components/Card';
|
||||||
import IconButton from '../../components/IconButton';
|
import IconButton from '../../components/IconButton';
|
||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
portfolioProjects: {
|
portfolioProjects: {
|
||||||
@@ -53,6 +54,28 @@ const Index: FC<Props> = ({ portfolioProjects }) => {
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||||||
|
<meta name='author' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
|
||||||
|
<link rel='canonical' href='https://hazemkrimi.tech' />
|
||||||
|
<meta property='og:image' content='/logo.jpg' />
|
||||||
|
<meta
|
||||||
|
property='og:description'
|
||||||
|
content='Hazem Krimi is a Full Stack JavaScript Developer and a Software Engineering Enthusiast'
|
||||||
|
/>
|
||||||
|
<meta property='og:title' content='Hazem Krimi' />
|
||||||
|
<meta
|
||||||
|
name='keywords'
|
||||||
|
content='Hazem, Krimi, Developer, Software, Engineer, Web, Mobile, Frontend, Backend, Fullstack, JavaScript, React.js, React Native, Node.js, Portfolio, Blog, Tutorials, Tech News'
|
||||||
|
/>
|
||||||
|
<title>Portfolio | Hazem Krimi</title>
|
||||||
|
</Head>
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<div className='back' onClick={() => router.back()}>
|
<div className='back' onClick={() => router.back()}>
|
||||||
<IconButton icon='/arrow-left.svg' />
|
<IconButton icon='/arrow-left.svg' />
|
||||||
@@ -69,6 +92,7 @@ const Index: FC<Props> = ({ portfolioProjects }) => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user