Files
ttl.sh/web/next.config.ts
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

14 lines
219 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
};
export default nextConfig;