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,4 +1,5 @@
import React, { ReactNode } from 'react';
import { Stack } from '@/ui/Stack';
interface FriendsListProps {
children: ReactNode;
@@ -6,8 +7,8 @@ interface FriendsListProps {
export function FriendsList({ children }: FriendsListProps) {
return (
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.5rem' }}>
<Stack gap={2}>
{children}
</div>
</Stack>
);
}