different small fixes

This commit is contained in:
averel10
2026-03-20 14:38:48 +01:00
parent 20e251710a
commit 8ecf1f5ed2
5 changed files with 16 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ export default async function ExperimentsAdminPage() {
}
return (
<div>
<div className='px-4 sm:px-6 lg:px-8 py-8'>
<Link
href="/admin"
className="text-blue-500 hover:text-blue-600 mb-6 inline-block"

View File

@@ -10,10 +10,10 @@ export default function RootLayout({
}) {
return (
<html>
<body className="flex flex-col min-h-screen md:h-screen">
<body className="flex flex-col min-h-screen">
<AudioProvider>
<Header />
<main className="flex-1 overflow-hidden">
<main className="flex-grow">
{children}
</main>
<Footer />