website refactor

This commit is contained in:
2026-01-18 22:55:55 +01:00
parent b43a23a48c
commit aeaa43f4d3
179 changed files with 4736 additions and 6832 deletions

View File

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