import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table" import { ChevronRight } from "lucide-react" import Image from "next/image" import Link from "next/link" import Avatar from "../ui/avatar" import Button from "../ui/customButton" import { projectTemplates } from "@/lib/data" export default function DashboardSharedWithMe({ shared, }: { shared: { id: string name: string type: string author: string authorAvatarUrl: string sharedOn: Date }[] }) { return (