feat: refactor setup tailwind and css

This commit is contained in:
Firman Ramdhani
2026-02-27 13:34:59 +07:00
parent 8bfa66111a
commit 8181bd61ec
8 changed files with 28 additions and 59 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
import { lazy, Suspense } from 'react';
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
import { NotFound, Forbidden, Maintenance, ComingSoon } from '@repo/ui';
import { NotFound } from '@repo/ui/components/system-pages/not-found';
import { Forbidden } from '@repo/ui/components/system-pages/forbidden';
import { Maintenance } from '@repo/ui/components/system-pages/maintenance';
import { ComingSoon } from '@repo/ui/components/system-pages/coming-soon';
const AuthModule = lazy(() => import('./auth'));
const AppModule = lazy(() => import('./modules'));
@@ -1,3 +1,3 @@
export default function ExamplePage() {
return <div>example</div>;
return <div className="bg-amber-200">example</div>;
}
+3 -1
View File
@@ -1 +1,3 @@
@import '@repo/ui/global.css';
@import 'tailwindcss';
@import '@repo/ui/theme.css';
@source "../../../packages/ui/src";