From 8e613efddf351878d7cb66fcd7e7fa929704c3d5 Mon Sep 17 00:00:00 2001 From: Bochkovskyi Date: Thu, 8 Feb 2024 15:38:35 +0200 Subject: [PATCH] add todo's --- src/app/layout.tsx | 4 ++++ src/components/sections/projects/project-card.tsx | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c5063b..98c1805 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,7 @@ +// TODO: Adjust site metadata +// TODO: Adjust components props types +// TODO: Add 404 page + import type { Metadata } from 'next' import Footer from '@/components/footer' diff --git a/src/components/sections/projects/project-card.tsx b/src/components/sections/projects/project-card.tsx index 85ae45d..6638517 100644 --- a/src/components/sections/projects/project-card.tsx +++ b/src/components/sections/projects/project-card.tsx @@ -1,3 +1,5 @@ +// TODO: Add projects individual routes + import Card from '@/components/ui/card' import Heading from '@/components/ui/heading' import ImagePlaceholder from '@/components/ui/image-placeholder'