Files
ttl.sh/web/postcss.config.mjs
Marc Campbell f61fd60925 Replace website with new shadcn/ui design
- 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>
2026-02-03 12:30:42 +00:00

9 lines
144 B
JavaScript

/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
'@tailwindcss/postcss': {},
},
}
export default config