import '@/styles/globals.css'; import { Providers } from '@/components/Providers'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Authentication | QR Master', description: 'Securely login or sign up to QR Master to manage your dynamic QR codes, track analytics, and access premium features. Your gateway to professional QR management.', icons: { icon: [ { url: '/favicon.svg', type: 'image/svg+xml' }, { url: '/logo.svg', type: 'image/svg+xml' }, ], apple: '/logo.svg', }, }; export default function AuthRootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
Home Privacy FAQ
); }