-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 93e745b Author: Mahdi Khashan <58775404+mahdikhashan@users.noreply.github.com> Date: Fri Apr 7 16:53:40 2023 +0330 chore: restructure project commit f2fba4c Author: Mahdi Khashan <58775404+mahdikhashan@users.noreply.github.com> Date: Sat Apr 1 15:02:15 2023 +0330 docs: replace name
- Loading branch information
1 parent
a56dff0
commit 5e80164
Showing
49 changed files
with
6,197 additions
and
6,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
type Project = { | ||
id: number; | ||
name: string; | ||
icon: string; | ||
slug: string; | ||
github: string; | ||
website: string; | ||
description: string; | ||
skills: string[]; | ||
featured: boolean; | ||
type: string; | ||
}; | ||
|
||
const projects: Project[] = [ | ||
{ | ||
id: 1, | ||
name: '99 Emails', | ||
icon: '/logo.svg', | ||
slug: '99-minutes-emails', | ||
github: 'https://github.com/mahdikhashan/99-minutes-emails', | ||
website: 'https://99-minutes-emails.vercel.app/', | ||
description: 'A user friendly, safe and available temporary email service.', | ||
skills: [ | ||
'react', | ||
'typescript', | ||
'redux-saga', | ||
'chakra-ui', | ||
'vite', | ||
'vitest', | ||
'cypress', | ||
'storybook' | ||
], | ||
featured: true, | ||
type: 'sideproject' | ||
}, | ||
{ | ||
id: 2, | ||
name: 'Aparat Python API', | ||
icon: '/package.png', | ||
slug: 'aparat-python', | ||
github: 'https://github.com/mahdikhashan/aparat-python', | ||
website: 'https://pypi.org/project/aparat-python/', | ||
description: 'Aparat VOD Platform API Wrapper', | ||
skills: ['python', 'REST-API', 'unit-test'], | ||
featured: false, | ||
type: 'python-package' | ||
}, | ||
{ | ||
id: 3, | ||
name: 'Vue 3 Click Outside', | ||
icon: '/package.png', | ||
slug: 'vue3-click-outside', | ||
github: 'https://github.com/mahdikhashan/vue3-click-outside', | ||
website: 'https://www.npmjs.com/package/@mahdikhashan/vue3-click-outside', | ||
description: | ||
'Directive for Vue 3 to run a method on clicking outside of the binded element', | ||
skills: ['javascript', 'vue3', 'vue-test-utils', 'jest'], | ||
featured: false, | ||
type: 'npm-package' | ||
}, | ||
{ | ||
id: 4, | ||
name: 'Vercel CORS Proxy', | ||
icon: '/package.png', | ||
slug: 'vercel-express-proxy', | ||
github: 'https://github.com/mahdikhashan/vercel-express-proxy', | ||
website: 'https://github.com/mahdikhashan/vercel-express-proxy', | ||
description: '🪞 Proxy server based on Express for Vercel platform', | ||
type: 'template', | ||
featured: false, | ||
skills: ['javascript', 'node.js', 'express.js', 'vercel'] | ||
}, | ||
{ | ||
id: 5, | ||
name: 'Vercel Express', | ||
icon: '/package.png', | ||
slug: 'vercel-express-template', | ||
github: 'https://github.com/mahdikhashan/vercel-express-template', | ||
website: 'https://github.com/mahdikhashan/vercel-express-template', | ||
description: '🔥 Express Server Template for Vercel', | ||
type: 'template', | ||
featured: false, | ||
skills: ['javascript', 'node.js', 'express.js', 'vercel'] | ||
}, | ||
{ | ||
id: 6, | ||
name: 'Veemoji', | ||
icon: '/package.png', | ||
slug: 'veemoji', | ||
github: 'https://github.com/mahdikhashan/veemoji', | ||
website: 'https://veemoji.surge.sh/', | ||
description: 'A dead simple emoji component library', | ||
type: 'npm-package', | ||
featured: false, | ||
skills: ['javascript', 'vue', 'npm'] | ||
} | ||
]; | ||
|
||
export { projects, type Project }; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { InferGetStaticPropsType } from 'next'; | ||
|
||
import Container from '@/ui/Container'; | ||
import { projects } from '@/lib/projects'; | ||
import ProjectLink from '@/ui/ProjectLink'; | ||
|
||
export default function ProjectsPage({ | ||
projects | ||
}: InferGetStaticPropsType<typeof getStaticProps>) { | ||
return ( | ||
<Container> | ||
<div className="space-y-6 font-mono"> | ||
<div className="space-y-8"> | ||
<div className="mt-12 max-w-screen-md space-y-4 prose"> | ||
<h1>Projects</h1> | ||
<h4> | ||
Things I've made over the years while trying to learn programming. | ||
</h4> | ||
</div> | ||
|
||
<div className="flex-col space-y-2"> | ||
{projects.map((project) => ( | ||
<ProjectLink key={project.id} {...project} /> | ||
))} | ||
{!projects.length && <div>No Project found.</div>} | ||
</div> | ||
</div> | ||
</div> | ||
</Container> | ||
); | ||
} | ||
|
||
export async function getStaticProps() { | ||
return { props: { projects } }; | ||
} |
Oops, something went wrong.
5e80164
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
personal-website – ./
personal-website-roan-three.vercel.app
personal-website-git-main-mahdikhashan.vercel.app
personal-website-mahdikhashan.vercel.app
5e80164
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
personal-website-qjv4 – ./
personal-website-qjv4-mahdikhashan.vercel.app
personal-website-qjv4-git-main-mahdikhashan.vercel.app
personal-website-qjv4.vercel.app
mo.nanoman.space