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 @@
import { FeedItemCard } from '@/components/feed/FeedItemCard';
import { FeedEmptyState } from '@/ui/FeedEmptyState';
import { Stack } from '@/ui/primitives/Stack';
import React from 'react';
interface FeedItemData {
id: string;
@@ -23,10 +23,10 @@ export function FeedList({ items }: FeedListProps) {
}
return (
<Stack gap={4}>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{items.map(item => (
<FeedItemCard key={item.id} item={item} />
))}
</Stack>
</div>
);
}