Skip to content

Commit

Permalink
add timeline to case studies
Browse files Browse the repository at this point in the history
  • Loading branch information
asmitbm committed Dec 8, 2023
1 parent 677972f commit aa5804f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
13 changes: 11 additions & 2 deletions app/projects/[slug]/ProjectContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,18 @@ export default function ProjectContent({ project }) {
<div className={styles.work_info}>
<div className={styles.title_name}>
<div className={styles.title}>
<p>Client</p>
<p>For</p>
</div>
<div className={styles.name}>{project.for}</div>
</div>

<div className={styles.title_name}>
<div className={styles.title}>
<p>Timeline</p>
</div>
<div className={styles.name}>
{project.timeline}
</div>
<div className={styles.name}>{project.client}</div>
</div>

<div className={styles.title_name}>
Expand Down
3 changes: 2 additions & 1 deletion content/projects/appwrite-docs-redesign.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ image: "/projects/appwrite.webp"
location: "India (Remote)"
year: "2023"
role: "UI/UX Designer"
client: "Self"
for: "Self"
timeline: "April 2023 - May 2023"
color: "#7C002D"
bgcolor: "#FFE9EF"
---
Expand Down
3 changes: 2 additions & 1 deletion content/projects/conda-forge-website-redesign.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ image: "/projects/condaforge.webp"
location: "Spain (Remote)"
year: "2023"
role: "UI/UX Intern"
client: "conda-forge"
for: "conda-forge"
timeline: "May 2023 - August 2023"
color: "#7C4300"
bgcolor: "#FFF5DD"
---
Expand Down
3 changes: 2 additions & 1 deletion content/projects/oras-website.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ image: "/projects/oras.webp"
location: "California (Remote)"
year: "2023"
role: "Visual Design Intern"
client: "ORAS Project"
for: "ORAS Project"
timeline: "March 2023 - May 2023"
color: "#00397C"
bgcolor: "#DCF2FF"
---
Expand Down
3 changes: 2 additions & 1 deletion content/projects/ubuntu-spatial-ui-design.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ image: "/projects/ubuntuui.webp"
location: "India (Remote)"
year: "2023"
role: "UI Designer"
client: "Self"
for: "Self"
timeline: "October 2023 - November 2023"
color: "#7C2D00"
bgcolor: "#FFEBDC"
---
Expand Down
7 changes: 6 additions & 1 deletion contentlayer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,16 @@ const Project = defineDocumentType(() => ({
description: "The feature image of the project",
required: true,
},
client: {
for: {
type: "string",
description: "The client of the project",
required: true,
},
timeline: {
type: "string",
description: "Time taken to complete the project",
required: true,
},
role: {
type: "string",
description: "The role of the project",
Expand Down

0 comments on commit aa5804f

Please sign in to comment.