refactor: code refactor

This commit is contained in:
Andrea
2024-02-05 19:03:39 +01:00
parent 2e879d9c00
commit fa60885d85
7 changed files with 38 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
export function Body({ children }: React.PropsWithChildren) {
return (
<body className="bg-[#202020] text-[#d6d6d6] font-['monospace']">
<body className="bg-[#222447] text-[#d6d6d6] font-['monospace']">
{children}
</body>
);

View File

@@ -1,6 +1,6 @@
export function Title({ children }: React.PropsWithChildren) {
return (
<div className="mt-5 mx-3 w-full flex flex-col items-center">
<div className="mt-5 w-full flex flex-col items-center">
<div className="text-[#ffff00] font-bold text-2xl">
<span>{children}</span>
</div>