Skip to content

Commit f66e84a

Browse files
committed
add features projects
1 parent 0df8926 commit f66e84a

File tree

6 files changed

+37
-38
lines changed

6 files changed

+37
-38
lines changed

src/data/Projects.ts

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
import demoImg from '/demo.webp';
22

3+
import crwnClothing from './screenshot/crwn-clothing.webp';
4+
import elctricSkateboards from './screenshot/electric-skateboards-USA.webp';
5+
import forkifyRecipe from './screenshot/forkify-recipe-js.webp';
6+
import openTable from './screenshot/open-table.webp';
7+
import adminDashboard from './screenshot/react-admin-dashboard.webp';
8+
39
export type ProjectType = {
410
id: number;
511
title: string;
6-
description: string;
12+
description?: string;
713
image: string;
814
repo: string;
915
url: string;
@@ -19,22 +25,29 @@ const Projects: ProjectType[] = [
1925
id: 1,
2026
title: 'Crwn Clothing Online Store',
2127
description: 'This is a project 1',
22-
image: demoImg,
23-
repo: 'https://github.com',
24-
url: 'https://www.google.com',
28+
image: crwnClothing,
29+
repo: 'https://github.com/frontendfixer/crwn-clothing-redux',
30+
url: 'https://crwn-clothing-redux.vercel.app',
2531
development: {
26-
language: ['react', 'typescript', 'HTML', 'CSS', 'redux'],
27-
tools: ['react', 'typescript'],
32+
language: [
33+
'firebase',
34+
'react',
35+
'typescript',
36+
'HTML',
37+
'CSS',
38+
'redux',
39+
'styled_components',
40+
],
2841
},
2942
featured: true,
3043
},
3144
{
3245
id: 2,
3346
title: 'Open Table | Book a Table at Any Restaurant',
3447
description: 'This is a project 2',
35-
image: demoImg,
36-
repo: 'https://github.com',
37-
url: 'https://www.google.com',
48+
image: openTable,
49+
repo: 'https://github.com/frontendfixer/OpenTable-NextJS-App',
50+
url: 'https://open-table-next-js-app.vercel.app',
3851
development: {
3952
language: [
4053
'nextjs',
@@ -47,56 +60,42 @@ const Projects: ProjectType[] = [
4760
'HTML',
4861
'CSS',
4962
],
50-
tools: ['react', 'typescript'],
5163
},
5264
featured: true,
5365
},
5466
{
5567
id: 3,
56-
title: 'Open Table | Book a Table at Any Restaurant',
68+
title: 'Admin Dashboard | Build with React',
5769
description: 'This is a project 2',
58-
image: demoImg,
59-
repo: 'https://github.com',
60-
url: 'https://www.google.com',
70+
image: adminDashboard,
71+
repo: 'https://github.com/frontendfixer/react-admin-ui',
72+
url: 'https://react-admin-dashboard-self.vercel.app/',
6173
development: {
62-
language: [
63-
'nextjs',
64-
'react',
65-
'typescript',
66-
'redux',
67-
'MUI',
68-
'prisma',
69-
'postgreSQL',
70-
'HTML',
71-
'CSS',
72-
],
73-
tools: ['react', 'typescript'],
74+
language: ['react', 'typescript', 'recharts', 'MUI', 'HTML', 'CSS'],
7475
},
7576
featured: true,
7677
},
7778
{
7879
id: 4,
79-
title: 'Project 4',
80+
title: 'Forkify | Search Recipe with Ingredients',
8081
description: 'This is a project 4',
81-
image: demoImg,
82-
repo: 'https://github.com',
83-
url: 'https://www.google.com',
82+
image: forkifyRecipe,
83+
repo: 'https://github.com/frontendfixer/forkify-recipe-js',
84+
url: 'https://forkify-recipe-js.vercel.app/#5ed6604691c37cdc054bd00c',
8485
development: {
85-
language: ['react', 'typescript', 'HTML', 'CSS', 'redux'],
86-
tools: ['react', 'typescript'],
86+
language: ['javascript', 'SASS', 'MVP_Architecture', 'HTML', 'CSS'],
8787
},
8888
featured: true,
8989
},
9090
{
9191
id: 5,
92-
title: 'Project 5',
92+
title: 'Electric Skateboards USA',
9393
description: 'This is a project 5',
94-
image: demoImg,
95-
repo: 'https://github.com',
96-
url: 'https://www.google.com',
94+
image: elctricSkateboards,
95+
repo: 'https://github.com/frontendfixer/electric-skateboards-USA',
96+
url: 'https://frontendfixer.github.io/electric-skateboards-USA/',
9797
development: {
98-
language: ['react', 'typescript', 'HTML', 'CSS', 'redux'],
99-
tools: ['react', 'typescript'],
98+
language: ['javascript', 'SASS', 'Static HTML', 'HTML', 'CSS'],
10099
},
101100
featured: true,
102101
},
39.4 KB
Binary file not shown.
Binary file not shown.
33.5 KB
Binary file not shown.

src/data/screenshot/open-table.webp

91.8 KB
Binary file not shown.
32.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)