login page

This commit is contained in:
2025-04-01 14:57:22 +08:00
parent b8e6180212
commit 696a434b95
11 changed files with 1104 additions and 76 deletions

View File

@@ -1,8 +1,9 @@
import './globals.css';
import type { Metadata } from 'next';
import { AuthProvider } from '@/lib/auth';
export const metadata: Metadata = {
title: 'Link Management & Analytics',
title: 'ShortURL Analytics',
description: 'Track and analyze shortened links',
};
@@ -14,7 +15,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body>
{children}
<AuthProvider>
{children}
</AuthProvider>
</body>
</html>
);