1
0
Fork 0

feat: final commit

Signed-off-by: Vojtech Mares <iam@vojtechmares.com>
This commit is contained in:
Vojtěch Mareš 2023-12-13 18:20:21 +01:00
parent 517a25d91d
commit 7b5d149ecc
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
21 changed files with 463 additions and 100 deletions

View file

@ -0,0 +1,15 @@
import clsx from "clsx";
import { ReactNode } from "react";
type Props = {
className?: string;
children?: ReactNode;
};
export function Container({ className, children }: Props) {
return (
<div className={clsx("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)}>
{children}
</div>
);
}