feat: Add Todo page mockup and layout Wrapper components

Key Changes:
- Created Wrapper components (Fullscreen, Column, Container, ListedComponent) to standardize the application's overall layout.
- Refactored the structure of major components like App.tsx and PageContainer.tsx to use the new Wrapper components.
- Added a simple TodoBoard mockup page at the /todos route.
- Adjusted flexbox classes for the TodoBoard component to allow its width to resize flexibly based on screen size.
This commit is contained in:
2025-09-25 17:40:27 +09:00
parent f7c1c26f5e
commit 5313dae892
12 changed files with 349 additions and 29 deletions

View File

@@ -1,6 +1,10 @@
@import url('https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.min.css');
@import 'tailwindcss';
@import 'tw-animate-css';
@plugin 'tailwind-scrollbar' {
nocompatible: true;
preferredstrategy: 'pseudoelements';
}
@custom-variant dark (&:is(.dark *));