import type { Metadata } from 'next' import React from 'react' import Image from 'next/image' import SessionProviders from '@/components/providers/SessionProviders' import { withBasePath } from '@/constants/images' import { texts } from '@/texts' // Login/signup — already disallowed in robots.ts; noindex is defense in // depth against the URL surfacing blank in search results if ever linked. export const metadata: Metadata = { robots: { index: false, follow: false }, } const authHeroSrc = withBasePath('/images/auth-v2.png') const logoSrc = withBasePath('/logo.svg') const AuthLayout = ({ children }: { children: React.ReactNode }) => { return (
{texts.auth.logoAlt} {children}
) } export default AuthLayout