import React from 'react'; import { ImageWithFallback } from 'xertica-ui/ui'; import { LanguageSelector } from 'xertica-ui/brand'; interface AuthPageShellProps { imageSrc: string; imageAlt: string; children: React.ReactNode; } export function AuthPageShell({ imageSrc, imageAlt, children }: AuthPageShellProps) { return (