diff --git a/src/app/(protected)/dashboard/page.tsx b/src/app/(protected)/dashboard/page.tsx index 9bbeead..136e379 100644 --- a/src/app/(protected)/dashboard/page.tsx +++ b/src/app/(protected)/dashboard/page.tsx @@ -1,3 +1,4 @@ +import DottedCreateCard from '@/components/app/DottedCreateCard/DottedCreateCard'; import ProjectCard from '@/components/app/ProjectCard/ProjectCard'; import { Button } from '@/components/ui/button'; import { validateRequest } from '@/lib/auth'; @@ -38,6 +39,7 @@ export default async function Page() { {db.map((d) => ( ))} + ); } diff --git a/src/components/app/DottedCreateCard/DottedCreateCard.tsx b/src/components/app/DottedCreateCard/DottedCreateCard.tsx new file mode 100644 index 0000000..ffff4ad --- /dev/null +++ b/src/components/app/DottedCreateCard/DottedCreateCard.tsx @@ -0,0 +1,22 @@ +import { Plus, UserPlus } from 'lucide-react'; +import Link from 'next/link'; + +export default function DottedCreateCard() { + return ( +
+ +
+ +

Create

+
+ +
+ +
+ +

Join

+
+ +
+ ); +} diff --git a/src/components/app/NavBar/NavBar.tsx b/src/components/app/NavBar/NavBar.tsx index 34a896d..cf6758b 100644 --- a/src/components/app/NavBar/NavBar.tsx +++ b/src/components/app/NavBar/NavBar.tsx @@ -17,8 +17,7 @@ import { ThemeSwitcher } from "../ThemeSwitcher/ThemeSwitcher" export const links = [ { href: '/dashboard', name: 'Dashboard' }, - { href: '/create', name: 'Create' }, - { href: '/join', name: 'Join' }, + { href: 'https://github.com/sponsors/SrIzan10', name: '❤️ Donate' }, ] function NavbarLinks() {