Skip to content

Commit

Permalink
feat: add projects and group by year
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavdc committed Dec 8, 2024
1 parent 4b188d0 commit 49435c6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 70 deletions.
84 changes: 14 additions & 70 deletions src/pages/projects/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,86 +2,30 @@ import type { ProjectData } from '@/types'

export const projectData: ProjectData = [
{
title: 'Projects Group',
title: '2021',
projects: [
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
],
},
{
title: 'Projects Group',
projects: [
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
text: 'Cowin Pinger',
description: 'Get notified on your phone when there is a vaccine slot available at your location, by running a script on your computer. Bundled into a neat npm library for ease of use.',
icon: 'i-mdi-npm-variant-outline',
href: 'https://www.npmjs.com/package/cowin-pinger',
},
],
},
{
title: 'Project Name',
projects: [],
},
{
title: 'Projects Group',
title: '2020',
projects: [
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
text: 'Find Me a Job',
description: 'Aggregator of tech jobs from the leading tech parks in Kerala. Get email notifications for new job postings matching your search query.',
icon: 'i-material-symbols-light:screen-search-desktop-rounded',
href: 'http://github.com/abhinavdc/findmeajob/',
},
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
},
],
},
{
title: 'Projects Group',
projects: [
{
text: 'Project Name',
description: 'Your project description information is a long piece of text.',
icon: 'i-carbon-campsite',
href: '/',
text: 'Trivia',
description: 'Test your trivia knowledge using the Trivia App. Built this to learn Clojure. Leverages the Open Trivia DB for trivia questions.',
icon: 'i-ic:sharp-quiz',
href: 'https://trivia-app-abd.netlify.app/',
},
],
},
Expand Down
3 changes: 3 additions & 0 deletions uno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ export default defineConfig({
safelist: [
'i-ri-file-list-2-line',
'i-carbon-campsite',
'i-mdi-npm-variant-outline',
'i-material-symbols-light:screen-search-desktop-rounded',
'i-ic:sharp-quiz',
'i-simple-icons-github',
'i-simple-icons-linkedin',
'i-simple-icons-stackoverflow',
Expand Down

0 comments on commit 49435c6

Please sign in to comment.