Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function ProductPage() {
<div className="w-full text-center py-14 bg-gradient-to-r from-brand_fourthary via-transparent to-brand_fourthary rounded-lg">
<h1 className=" text-3xl font-bold text-center">Good evening , {viwer?viwer.name:"User Not Found"}</h1>
</div>
<h2 className="text-2xl font-bold py-5">Recent Workspaces : </h2>
<h2 className=" text-brand_tertiary/50 text-sm font-medium pb-2 pt-5 px-1">Recent Workspaces </h2>
{
recentWorkspaces?.length!==0?
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-3">
Expand Down
4 changes: 2 additions & 2 deletions components/dashboard-components/WorkingSpaceNotFound.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import { Table,Plus } from "lucide-react"
import { Notebook,Plus } from "lucide-react"
import { Button } from "../ui/button";
import MaxWContainer from "../ui/MaxWContainer";
import { useMutation } from "convex/react";
Expand All @@ -19,7 +19,7 @@ export default function WorkingSpaceNotFound() {
<MaxWContainer>
<div className="w-full text-center py-14">
<div className="flex flex-col items-center justify-center gap-3">
<Table size="50" />
<Notebook size="50" />
<h1 className=" text-3xl font-bold text-center">{`You don't have any working Space `}</h1>
</div>
<div className="w-full flex items-center justify-center mt-5">
Expand Down