- Hero section with clear value prop - Problem/solution framing - Feature grid - Pricing section (early adopter /mo) - Email waitlist signup (Formspree) - Responsive design - Dark theme with sage green accent
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export',
|
|
images: { unoptimized: true }
|
|
}
|
|
|
|
export default nextConfig
|