first commit
This commit is contained in:
69
data/projects.ts
Normal file
69
data/projects.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
export interface Project {
|
||||
title: string;
|
||||
description: string;
|
||||
type: string;
|
||||
logo: string;
|
||||
link: string;
|
||||
slug: string;
|
||||
date: string;
|
||||
status: string;
|
||||
skills: string;
|
||||
}
|
||||
|
||||
export const projects: Project[] = [
|
||||
{
|
||||
title: 'Chopfood NG',
|
||||
description: 'A delivery app for customers to easily order for food around their location.',
|
||||
logo: '/logos/driwwwle.svg',
|
||||
link: 'https://github.com/itsnitinr/driwwwle',
|
||||
slug: 'driwwwle',
|
||||
type: 'Software Development',
|
||||
date: "2023-2024",
|
||||
status: "Completed",
|
||||
skills: "Angular, Node.js, Express, mySql, TypeScript"
|
||||
},
|
||||
{
|
||||
title: 'Vendostack',
|
||||
description: 'An ecommerce platform for vendors to sell their products online.',
|
||||
logo: '/logos/vsc.svg',
|
||||
link: 'https://vendostack.com',
|
||||
slug: 'vscode-portfolio',
|
||||
type: 'Software Development',
|
||||
date: "2024-Present",
|
||||
status: "Ongoing",
|
||||
skills: "Angular, Node.js, Express, mySql, TypeScript, GraphQL, React"
|
||||
},
|
||||
{
|
||||
title: 'ireferdoc',
|
||||
description: 'A simple and elegant way to track your subscriptions and save money.',
|
||||
logo: '/logos/subtrackt.svg',
|
||||
link: 'https://ireferdoc.com',
|
||||
slug: 'subtrackt',
|
||||
type: 'Software Development',
|
||||
date: "2021- Present",
|
||||
status: "Completed",
|
||||
skills: "Angular, Node.js, Express, mySql, TypeScript"
|
||||
},
|
||||
{
|
||||
title: 'Safrafan',
|
||||
description: 'VSCode extension to track and deploy your Coolify applications.',
|
||||
logo: '/logos/coolify.svg',
|
||||
link: 'https://github.com/itsnitinr/coolify-vscode-extension',
|
||||
slug: 'coolify-vscode-extension',
|
||||
type: 'Software Development',
|
||||
date: "2021-2023",
|
||||
status: "Archived",
|
||||
skills: "React, TypeScript, Node.js, GitHub Action"
|
||||
},
|
||||
{
|
||||
title: 'Arizult Consulting',
|
||||
description: 'Conducted a 3-day QA audit, identifying 45+ critical bugs;',
|
||||
logo: '/logos/coolify.svg',
|
||||
link: 'https://github.com/itsnitinr/coolify-vscode-extension',
|
||||
slug: 'coolify-vscode-extension',
|
||||
type: 'QA Audit',
|
||||
date: "2024-2025",
|
||||
status: "Completed",
|
||||
skills: "Playwright, TypeScript, Node.js, GitHub Action"
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user