-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathProject.jsx
36 lines (36 loc) · 969 Bytes
/
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
import React from 'react'
import '../index.css'
import '../tabres.css'
import '../responsive.css'
import SectionTitle from './SectionTitle'
import SingleProject from './SingleProject'
import ProjectData from './ProjectData'
function Project() {
document.title = 'Brigrate - Project'
return (
<>
<section id="Project">
<div id="Container">
<SectionTitle
title="Popular Projects"
desc="we have completed too many projects. Here are some of our projects."
/>
<div id="ProjectContentWrapper">
{ProjectData.map((data) => {
return (
<SingleProject
href={data.href}
title={data.title}
desc={data.desc}
src={data.src}
key={data.id}
/>
)
})}
</div>
</div>
</section>
</>
)
}
export default Project