mirror of
https://github.com/replicatedhq/ttl.sh.git
synced 2026-02-14 16:59:51 +00:00
- Complete redesign using shadcn/ui components - Dark/light theme support with next-themes - Modern hero section with terminal animation - Features, How-to, Use Cases, and Time Limits sections - Responsive header with mobile menu - Tailwind CSS v4 with CSS variables for theming - All custom components (Header, Hero, Features, etc.) - Full shadcn/ui component library included Design by Marc via v0.dev Signed-off-by: Marc Campbell <marc.e.campbell@gmail.com>
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
'@tailwindcss/postcss': {},
|
|
},
|
|
}
|
|
|
|
export default config
|