- Add package.json with dependencies for TanStack, HeroUI, and Vite. - Include favicon, logos, and manifest for PWA support. - Create global styles with Tailwind CSS and HeroUI. - Set up TypeScript configuration for the project. - Implement routing with TanStack Router and context for React Query. - Create root and index routes with basic application structure. - Add integration files for HeroUI and TanStack Query. - Configure Vite with necessary plugins for React and Tailwind CSS.
20 lines
533 B
CSS
20 lines
533 B
CSS
@import "tailwindcss";
|
|
@plugin '../integrations/heroui/heroui.ts';
|
|
|
|
@source '../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}';
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
body {
|
|
@apply m-0;
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
|
|
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family:
|
|
source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
}
|