chore: final layout

This commit is contained in:
Andrea
2023-03-07 12:10:29 +01:00
parent 0fc8c40fed
commit a844ec9845
11 changed files with 61 additions and 33 deletions

7
app/components/Title.tsx Normal file
View File

@@ -0,0 +1,7 @@
export function Title({ children }: React.PropsWithChildren) {
return (
<div className="mt-5 mx-5 lg:mx-0 text-xl sm:text-3xl text-[#ffff00] font-bold">
<span>{children}</span>
</div>
);
}