Seobility und Ahrefs 100/100 score

This commit is contained in:
Timo Knuth
2026-01-13 08:49:35 +01:00
parent 5b74b7b405
commit ffe4cca5e5
56 changed files with 6204 additions and 1918 deletions

View File

@@ -1,11 +1,26 @@
export default function AuthLayout({
import '@/styles/globals.css';
import { Providers } from '@/components/Providers';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Authentication | QR Master',
description: 'Login or Sign Up to QR Master',
};
export default function AuthRootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white">
{children}
</div>
<html lang="en">
<body className="font-sans">
<Providers>
<div className="min-h-screen bg-gradient-to-br from-primary-50 to-white">
{children}
</div>
</Providers>
</body>
</html>
);
}