updated projects
This commit is contained in:
@@ -38,24 +38,30 @@ const Project = () => {
|
||||
className="project__content__main__container"
|
||||
style={{ width: `calc(${100 / count}% - 16px)` }}
|
||||
>
|
||||
<h3 style={{ color: "#fff", marginBottom: 12 }}>{item.title}</h3>
|
||||
<div style={{ display: 'flex', flexDirection: 'row', justifyContent:'space-between' }}>
|
||||
<h3 style={{ fontFamily: "itrFontMedium", fontSize: '25px', color: "#fff", marginBottom: 12 }}>{item.title}</h3>
|
||||
<h3 style={{ fontFamily: "itrFontMedium", fontSize: '25px', color: "#fff", marginBottom: 12 }}>{item.sub}</h3>
|
||||
</div>
|
||||
<div className="project_item_content">
|
||||
<Image width={"100%"} src={item.img}></Image>
|
||||
<Image className="project_item_content_image" width={"100%"} src={item.img}></Image>
|
||||
<span>{item.content}</span>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<h1 className="projects__title">Retired/Inactive Projects</h1>
|
||||
<h1 className="projects__title">Retired Projects</h1>
|
||||
<div className="projects_wrap" size={16}>
|
||||
{projects.inactive.map((item) => (
|
||||
<div
|
||||
className="project__content__main__container"
|
||||
style={{ width: `calc(${100 / count}% - 16px)` }}
|
||||
style={{ width: `calc(${100 / count}% - 16px)`}}
|
||||
>
|
||||
<h3 style={{ color: "#fff", marginBottom: 12 }}>{item.title}</h3>
|
||||
<div style={{ display: 'flex', flexDirection: 'row', justifyContent:'space-between' }}>
|
||||
<h3 style={{ fontFamily: "itrFontMedium", fontSize: '25px', color: "#fff", marginBottom: 12 }}>{item.title}</h3>
|
||||
<h3 style={{ fontFamily: "itrFontMedium", fontSize: '25px', color: "#fff", marginBottom: 12 }}>{item.sub}</h3>
|
||||
</div>
|
||||
<div className="project_item_content">
|
||||
<Image width={"100%"} src={item.img}></Image>
|
||||
<Image className="project_item_content_image" width={"100%"} src={item.img}></Image>
|
||||
<span>{item.content}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user