Nuevo inicio del repositorio

This commit is contained in:
Mauricio Siu
2024-04-29 23:13:00 -06:00
commit 8dbf28c693
60 changed files with 13229 additions and 0 deletions

13
components/Container.tsx Normal file
View File

@@ -0,0 +1,13 @@
import clsx from "clsx";
export function Container({
className,
...props
}: React.ComponentPropsWithoutRef<"div">) {
return (
<div
className={clsx("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)}
{...props}
/>
);
}