website refactor

This commit is contained in:
2026-01-18 23:24:30 +01:00
parent aeaa43f4d3
commit 182056a57b
487 changed files with 1783 additions and 2170 deletions

View File

@@ -1,10 +1,10 @@
'use client';
import { EmptyState } from '@/components/shared/state/EmptyState';
import { ErrorDisplay } from '@/components/shared/state/ErrorDisplay';
import { LoadingWrapper } from '@/components/shared/state/LoadingWrapper';
import { EmptyState } from '@/ui/EmptyState';
import { ErrorDisplay } from '@/ui/ErrorDisplay';
import { LoadingWrapper } from '@/ui/LoadingWrapper';
import { Box } from '@/ui/Box';
import { Heading } from '@/ui/Heading';
import { Box } from '@/ui/primitives/Box';
import { StateContainerConfig, StateContainerProps } from '@/ui/state-types';
import { Text } from '@/ui/Text';
import { AlertCircle, Grid, Inbox, List, LucideIcon } from 'lucide-react';

View File

@@ -1,7 +1,7 @@
'use client';
import React from 'react';
import { PageWrapper, PageWrapperProps } from '@/components/shared/state/PageWrapper';
import { PageWrapper, PageWrapperProps } from '@/ui/PageWrapper';
/**
* Stateful Page Wrapper - CLIENT SIDE ONLY
@@ -56,4 +56,4 @@ export function StatefulPageWrapper<TData>({
}
// Re-export types for convenience
export type { PageWrapperProps, PageWrapperLoadingConfig, PageWrapperErrorConfig, PageWrapperEmptyConfig } from '@/components/shared/state/PageWrapper';
export type { PageWrapperProps, PageWrapperLoadingConfig, PageWrapperErrorConfig, PageWrapperEmptyConfig } from '@/ui/PageWrapper';