Files
gridpilot.gg/apps/website/components/auth/AuthFooterLinks.tsx
2026-01-19 18:01:30 +01:00

22 lines
418 B
TypeScript

'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 (
<Group direction="column" gap={3} align="center" fullWidth>
{children}
</Group>
);
}