From 65c0adfd769b9ef11b897c96a3634c61120055b8 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 8 Dec 2025 00:18:03 +0900 Subject: feat(client): redesign frontend with TailwindCSS v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace inline styles with TailwindCSS, implementing a cohesive Japanese-inspired design system with custom colors (cream, teal primary), typography (Fraunces, DM Sans), and animations. Update all pages and components with consistent styling, improve accessibility by adding aria-hidden to decorative SVGs, and configure Biome for Tailwind CSS syntax support. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/main.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client/main.tsx') diff --git a/src/client/main.tsx b/src/client/main.tsx index bff0889..4809bc1 100644 --- a/src/client/main.tsx +++ b/src/client/main.tsx @@ -2,6 +2,7 @@ import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import { App } from "./App"; import { AuthProvider, SyncProvider } from "./stores"; +import "./styles.css"; const rootElement = document.getElementById("root"); if (!rootElement) { -- cgit v1.2.3-70-g09d2