'use client'; import { Stack } from '@/ui/primitives/Stack'; 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} ); }