WORKKKKKKKS ; Page loading works really well now. If anything goes wrong revert to this commit

This commit is contained in:
2025-06-18 16:39:43 +02:00
parent 7d4e5b226f
commit dd10624ce4
7 changed files with 65 additions and 17 deletions

View File

@@ -1,3 +1,5 @@
export const dynamic = "force-dynamic";
import { NextResponse } from 'next/server';
import fs from 'fs';
import path from 'path';

View File

@@ -1,3 +1,5 @@
export const dynamic = "force-dynamic";
import { NextResponse } from 'next/server';
import fs from 'fs';
import path from 'path';

View File

@@ -68,6 +68,19 @@ export default function RootLayout({
</div>
</header>
{children}
<footer className="bg-gray-100 p-4">
<div className="container mx-auto flex flex-col md:flex-row justify-between items-center">
<p>
<span>
&copy; {new Date().getFullYear()} {blogOwner}
</span>
<span className="text-gray-500 text-right" style={{ fontSize: '12px' }}>
Du bist auf dem Development-Server.
Er ist nicht stabil und kann sich jederzeit ändern.
</span>
</p>
</div>
</footer>
</body>
</html>
);