diff --git a/app/projects/[slug]/ProjectContent.jsx b/app/projects/[slug]/ProjectContent.jsx index 7cdc8b2..0b95184 100644 --- a/app/projects/[slug]/ProjectContent.jsx +++ b/app/projects/[slug]/ProjectContent.jsx @@ -78,9 +78,18 @@ export default function ProjectContent({ project }) {
-

Client

+

For

+
+
{project.for}
+
+ +
+
+

Timeline

+
+
+ {project.timeline}
-
{project.client}
diff --git a/content/projects/appwrite-docs-redesign.mdx b/content/projects/appwrite-docs-redesign.mdx index e9eb028..8db7b5d 100644 --- a/content/projects/appwrite-docs-redesign.mdx +++ b/content/projects/appwrite-docs-redesign.mdx @@ -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" --- diff --git a/content/projects/conda-forge-website-redesign.mdx b/content/projects/conda-forge-website-redesign.mdx index d538d55..d9d2846 100644 --- a/content/projects/conda-forge-website-redesign.mdx +++ b/content/projects/conda-forge-website-redesign.mdx @@ -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" --- diff --git a/content/projects/oras-website.mdx b/content/projects/oras-website.mdx index 32479e5..71b98ea 100644 --- a/content/projects/oras-website.mdx +++ b/content/projects/oras-website.mdx @@ -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" --- diff --git a/content/projects/ubuntu-spatial-ui-design.mdx b/content/projects/ubuntu-spatial-ui-design.mdx index f46ba06..fc06e94 100644 --- a/content/projects/ubuntu-spatial-ui-design.mdx +++ b/content/projects/ubuntu-spatial-ui-design.mdx @@ -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" --- diff --git a/contentlayer.config.js b/contentlayer.config.js index fd39f97..9a51e4d 100644 --- a/contentlayer.config.js +++ b/contentlayer.config.js @@ -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",