diff --git a/zettelkasten-front/src/assets/icons/TasksIcon.tsx b/zettelkasten-front/src/assets/icons/TasksIcon.tsx index 30a858e..186eac0 100644 --- a/zettelkasten-front/src/assets/icons/TasksIcon.tsx +++ b/zettelkasten-front/src/assets/icons/TasksIcon.tsx @@ -3,21 +3,16 @@ import React from "react"; export function TasksIcon() { return ( ); diff --git a/zettelkasten-front/src/pages/DashboardPage.tsx b/zettelkasten-front/src/pages/DashboardPage.tsx index 9679bf3..37cc531 100644 --- a/zettelkasten-front/src/pages/DashboardPage.tsx +++ b/zettelkasten-front/src/pages/DashboardPage.tsx @@ -3,15 +3,13 @@ import { fetchPartialCards, getCard } from "../api/cards"; import { useEffect } from "react"; import { Link, useLocation } from "react-router-dom"; import { PartialCard, Card } from "../models/Card"; -import { isTodayOrPast } from "../utils/dates"; import { useTaskContext } from "../contexts/TaskContext"; import { usePartialCardContext } from "../contexts/CardContext"; -import { H4, H6 } from "../components/Header"; import { CardList } from "../components/cards/CardList"; -import { TaskList } from "../components/tasks/TaskList"; import { useAuth } from "../contexts/AuthContext"; import { CardBody } from "../components/cards/CardBody"; import { useNavigate } from "react-router-dom"; +import { TasksIcon } from "../assets/icons/TasksIcon"; export function DashboardPage() { const { partialCards } = usePartialCardContext(); @@ -43,18 +41,59 @@ export function DashboardPage() { return (
+ Your personal space for growing ideas. Create cards, connect + thoughts, and watch your knowledge garden flourish. Get + started with the quick actions below. +
+