'use client'; import { Group } from '@/ui/Group'; import React from 'react'; interface AuthFooterLinksProps { children: React.ReactNode; } /** * AuthFooterLinks * * Semantic container for links at the bottom of auth cards. */ export function AuthFooterLinks({ children }: AuthFooterLinksProps) { return ( {children} ); }