diff --git a/app/issues/page.tsx b/app/issues/page.tsx index 2d1b479..7ad438b 100644 --- a/app/issues/page.tsx +++ b/app/issues/page.tsx @@ -1,7 +1,19 @@ +'use client'; import React from 'react'; import Collection from '@/comps/Collection'; import Link from 'next/link'; import { Button } from '@/components/ui/button'; +import { + Dialog, + DialogContent, + DialogDescription, + DialogHeader, + DialogTitle, + DialogTrigger, + DialogFooter, + DialogClose, +} from '@/components/ui/dialog'; +import organizations from '@/public/organizations.json'; export default function Issues() { return ( @@ -11,12 +23,38 @@ export default function Issues() { Beginner-Friendly GSOC Issues

- Explore the list of beginner-friendly GSOC issues from various organizations. Get started on - your open source journey! + Explore the list of beginner-friendly GSOC issues from various + organizations. Get started on your open source journey!

+ - ); } + +function Filter() { + return ( + + + + + + + Filters + + +
+ + {organizations.map((org) => ( + + ))} +
+
+
+ ); +}