website refactor

This commit is contained in:
2026-01-19 01:24:07 +01:00
parent e1ce3bffd1
commit edc4cd7f21
64 changed files with 1113 additions and 753 deletions

View File

@@ -1,6 +1,7 @@
'use client';
import { Grid } from '@/ui/Grid';
import { Box } from '@/ui/Box';
import React from 'react';
interface AuthProviderButtonsProps {
@@ -14,10 +15,10 @@ interface AuthProviderButtonsProps {
*/
export function AuthProviderButtons({ children }: AuthProviderButtonsProps) {
return (
<div style={{ marginBottom: '1.5rem' }}>
<Box marginBottom={6}>
<Grid cols={1} gap={3}>
{children}
</Grid>
</div>
</Box>
);
}