Update website structure and styles

This commit is contained in:
Hazem Krimi
2022-02-13 19:11:46 +01:00
parent b6d7feccc1
commit 04cc13815d
20 changed files with 93 additions and 149 deletions
+2 -20
View File
@@ -1,14 +1,11 @@
import React, { FC, useContext, useState } from 'react';
import { ThemeContext } from '../styles/theme';
import React, { FC, useState } from 'react';
import { useForm, ValidationError } from '@formspree/react';
import Head from 'next/head';
import { Wrapper } from '../styles/about';
import Image from 'next/image';
import Input from '../components/Input';
import MDXButton from '../components/MDXButton';
const About: FC = () => {
const { mode } = useContext(ThemeContext);
const [form, setForm] = useState<{ name: string; email: string; message: string }>({
name: '',
email: '',
@@ -51,22 +48,10 @@ const About: FC = () => {
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>
<title>Contact | Hazem Krimi</title>
</Head>
<Wrapper>
<div className='content'>
<div>
<h1>About Me</h1>
<div className='about'>
<p>
I am a software developer and a student. I have experience as a full stack developer
but I lean more to the front end and I have built a lot of web apps and some mobile
apps. Also, I am always learning and experimenting with new technologies (currently
learning about the ethereum blockchain) and other topics other than software
engineering.
</p>
</div>
</div>
<div>
<h1>Contact Me {submitted && <span className='success'>Message sent </span>}</h1>
<form className='contact' onSubmit={handleSubmit}>
@@ -116,9 +101,6 @@ const About: FC = () => {
</form>
</div>
</div>
<div className='photo'>
<Image src='/picture.jpg' width='100%' height='100%' layout='responsive' />
</div>
</Wrapper>
</>
);
+38 -31
View File
@@ -52,38 +52,45 @@ const Index: FC<Props> = ({ blogPosts, portfolioProjects }) => {
<Wrapper>
<Hero />
<div className='content'>
<h1>Portfolio</h1>
<Button href='/portfolio' className='blue'>
See More
</Button>
<div className='portfolio'>
<div className='projects-wrapper'>
{portfolioProjects.length !== 0 ? (
portfolioProjects
.slice(0, 3)
.map(({ slug, ...rest }) => (
<h1>About me</h1>
<div className='about'>
<p>
I am a software developer. I have experience as a full stack developer but I lean more
to the front end and I have built a lot of web apps and some mobile apps. Also, I am
always learning and experimenting with new technologies (currently learning about the
ethereum blockchain) and other topics other than software engineering.
</p>
</div>
{portfolioProjects.length !== 0 && (
<>
<h1>Portfolio</h1>
<Button href='/portfolio' className='blue'>
See More
</Button>
<div className='portfolio'>
<div className='projects-wrapper'>
{portfolioProjects.slice(0, 3).map(({ slug, ...rest }) => (
<Card {...rest} key={slug} href={`/portfolio/${slug}`} />
))
) : (
<h4>Nothing for now</h4>
)}
</div>
</div>
<h1>Blog</h1>
<Button href='/blog' className='blue'>
See More
</Button>
<div className='blog'>
<div className='articles-wrapper'>
{blogPosts.length !== 0 ? (
blogPosts
.slice(0, 3)
.map(({ slug, ...rest }) => <Card {...rest} key={slug} href={`/blog/${slug}`} />)
) : (
<h4>Nothing for now</h4>
)}
</div>
</div>
))}
</div>
</div>
</>
)}
{blogPosts.length !== 0 && (
<>
<h1>Blog</h1>
<Button href='/blog' className='blue'>
See More
</Button>
<div className='blog'>
<div className='articles-wrapper'>
{blogPosts.slice(0, 3).map(({ slug, ...rest }) => (
<Card {...rest} key={slug} href={`/blog/${slug}`} />
))}
</div>
</div>
</>
)}
</div>
</Wrapper>
</>
-1
View File
@@ -88,7 +88,6 @@ const PortfolioProject: FC<Props> = ({ source, frontMatter }) => {
<MDXButton variant='action' link={frontMatter.demo} target='_blank'>
Demo
</MDXButton>
<MDXButton variant='outline' link={frontMatter.code} target='_blank'>
Source Code
</MDXButton>