Skip to content

Commit

Permalink
add fundraiser details
Browse files Browse the repository at this point in the history
  • Loading branch information
suvanbanerjee committed Jun 17, 2024
1 parent 69532ba commit f84b7af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/timeline.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { link } from 'fs';
import React from 'react';

function TimelineEvent({ title, date, description, link }: { title: string, date: string, description: string, link?: string }) {
Expand All @@ -10,7 +11,7 @@ function TimelineEvent({ title, date, description, link }: { title: string, date
{description}
</a>
) : (
<p className="mt-3">{description}</p>
<p className="mt-3 dark:text-gray-200">{description}</p>
)}
</div>
);
Expand Down Expand Up @@ -79,7 +80,8 @@ export default function Timeline() {
{
title: 'OpenVoiceOS Fundraiser',
date: 'March 2023',
description: 'OpenVoiceOS starts fundraiser to form a non-profit foundation legal entity.'
description: 'OpenVoiceOS starts fundraiser to form a non-profit foundation legal entity.',
link: 'https://www.gofundme.com/f/openvoiceos'
},
{
title: 'Aditya Leaves OpenVoiceOS',
Expand Down

0 comments on commit f84b7af

Please sign in to comment.