website refactor

This commit is contained in:
2026-01-18 16:18:18 +01:00
parent 0b301feb61
commit 13567d51af
329 changed files with 4701 additions and 4750 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { Panel } from '@/ui/Panel';
import { Box } from '@/ui/Box';
import { Stack } from '@/ui/Stack';
import { ActivityFeed } from '../feed/ActivityFeed';
interface FeedItem {
@@ -27,9 +27,9 @@ interface ActivityFeedPanelProps {
export function ActivityFeedPanel({ items, hasItems }: ActivityFeedPanelProps) {
return (
<Panel title="Activity Feed" padding={0}>
<Box px={6} pb={6}>
<Stack px={6} pb={6}>
<ActivityFeed items={items} hasItems={hasItems} />
</Box>
</Stack>
</Panel>
);
}