From 04dcf110a3f299001af1b2e600ef9c7d5f9991b4 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 8 Jan 2026 09:35:58 +0700 Subject: [PATCH] feat: create Daily Checklist page --- src/app/daily-checklist/daily-checklist/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/app/daily-checklist/daily-checklist/page.tsx diff --git a/src/app/daily-checklist/daily-checklist/page.tsx b/src/app/daily-checklist/daily-checklist/page.tsx new file mode 100644 index 00000000..e5b5da4e --- /dev/null +++ b/src/app/daily-checklist/daily-checklist/page.tsx @@ -0,0 +1,11 @@ +import { DailyChecklistContent } from '@/figma-make/components/pages/daily-checklist/DailyChecklistContent'; + +const DailyChecklistPage = () => { + return ( +
+ +
+ ); +}; + +export default DailyChecklistPage;