feat: add instant QR code generator, AI coming soon banner, and home page client components.

This commit is contained in:
Timo
2026-01-08 00:12:52 +01:00
parent b4fe905d8e
commit a48045dacb
3 changed files with 8 additions and 5 deletions

View File

@@ -74,7 +74,11 @@ export const InstantGenerator: React.FC<InstantGeneratorProps> = ({ t }) => {
};
return (
<section className="py-16 bg-gray-50 border-t border-gray-100">
<section className="pt-16 pb-32 bg-gray-50 border-t border-gray-100 relative">
<div
className="absolute bottom-0 left-0 right-0 h-32 bg-gradient-to-r from-blue-50 to-white pointer-events-none"
style={{ maskImage: 'linear-gradient(to bottom, transparent, black)', WebkitMaskImage: 'linear-gradient(to bottom, transparent, black)' }}
/>
<div className="container mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl">
<motion.div
initial={{ opacity: 0, y: 20 }}