feat(wip homepage with new design)

This commit is contained in:
2026-03-28 17:35:28 +01:00
parent 72721adaff
commit 8766552707
37 changed files with 684 additions and 204 deletions

View File

@@ -0,0 +1,8 @@
import { cn } from '@/lib/utils';
import React from "react";
export function Container({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div className={cn('w-full max-w-7xl mx-auto px-4', className)} {...props} />
);
}