Initial public release

This commit is contained in:
Bohdan Triapitsyn
2025-12-07 19:32:53 +02:00
commit 4b2edf7318
319 changed files with 81600 additions and 0 deletions
@@ -0,0 +1,11 @@
import React from 'react';
import { SectionPlaceholder } from '../SectionPlaceholder';
import { ScrollableOverlay } from '@/components/ui/ScrollableOverlay';
export const ProvidersPage: React.FC = () => {
return (
<ScrollableOverlay outerClassName="h-full" className="mx-auto max-w-3xl space-y-6 p-6">
<SectionPlaceholder sectionId="providers" variant="page" />
</ScrollableOverlay>
);
};
@@ -0,0 +1,11 @@
import React from 'react';
import { SectionPlaceholder } from '../SectionPlaceholder';
import { ScrollableOverlay } from '@/components/ui/ScrollableOverlay';
export const ProvidersSidebar: React.FC = () => {
return (
<ScrollableOverlay outerClassName="h-full" className="px-3 py-2">
<SectionPlaceholder sectionId="providers" variant="sidebar" />
</ScrollableOverlay>
);
};