All checks were successful
Production deployment / Production-Deployment (push) Successful in 45s
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
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://chopfood.com.ng',
|
|
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://git.talenttic.com/safrafan',
|
|
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/arizult/coolify-vscode-extension',
|
|
slug: 'coolify-vscode-extension',
|
|
type: 'QA Audit',
|
|
date: "2024-2025",
|
|
status: "Completed",
|
|
skills: "Playwright, TypeScript, Node.js, GitHub Action"
|
|
},
|
|
];
|