This commit is contained in:
2025-08-22 15:38:20 +02:00
parent 09e2e22886
commit 63066996a5
11 changed files with 54 additions and 61 deletions

View File

@@ -29,12 +29,12 @@ export default function RootLayout({ children }) {
<html
lang="en"
className={clsx(
'h-full scroll-smooth bg-[#FEFFF6] antialiased',
'h-full scroll-smooth bg-sand antialiased',
inter.variable,
lexend.variable,
)}
>
<body className="flex h-full flex-col pt-20">{children}</body>
<body className="flex h-full flex-col pt-20 bg-sand">{children}</body>
</html>
)
}