-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.jsx
86 lines (67 loc) · 2.87 KB
/
Project.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import Image from 'next/image'
import Subnav from './Subnav';
import SkillCard from './SkillCard';
import ProjectCard from './ProjectCard';
const Project = () => {
const data = [
{
image: '/assets/images/project3.jpg',
name: 'BargainFinder (Online Store)',
description: 'BargainFinder is a mobile application designed to help users find the best deals on various products available online. By crawling the web and aggregating data from multiple e-commerce platforms... ',
github:'https://github.com/casyazmon',
link:'website',
stack: [
'Java', 'Springboot', 'React', 'Next.js', 'tailwind'
]
},
{
image: '/assets/images/project2.jpg',
name: 'Online Quiz App (Wizz)',
description: 'The application allows users to take quizzes on various topics. Users can browse available quizzes, answer questions, and receive feedback on their results.',
github:'https://github.com/casyazmon',
link:'website',
stack: [
'Java', 'Springboot', 'React', 'Next.js', 'tailwind'
]
},
{
image: '/assets/images/project3.jpg',
name: 'Make it Short (URL)',
description: 'MakeItShort is a simple URL shortener API built with Java Spring Boot and MongoDB. It allows users to shorten long URLs into concise and easily shareable links. Provide user registration and login...',
github:'https://github.com/casyazmon/MakeItShort-URL-Shortener',
link:'website',
stack: [
'Java', 'Springboot', 'React', 'Next.js', 'tailwind'
]
},
];
return (
<section id='projects' className=" bg-[#FEB101] w-full flex flex-col mt-24 sm:mt-44 shadow-lg p-5">
<div className="flex-col flex bg-white pt-5 pb-24">
<Subnav/>
<div className=" flex-col justify-center items-center pt-20">
<h1 className="head_text text-center ">
Some relevant <span style={{ color: '#FEB103' }}>projects</span>.
</h1>
<h3 className=' w-full py-3 text-center desc-sub'>
github.com/casyazmon
</h3>
</div>
<div class="grid grid-cols-1 sm:grid-cols-3 gap-10 px-5 pt-10 sm:px-20">
{data.map((project, index) => (
<ProjectCard
key={index}
image={project.image}
name={project.name}
description={project.description}
github={project.github}
link={project.link}
stack={project.stack ? project.stack : []}
/>
))}
</div>
</div>
</section>
)
}
export default Project