feat: add multiple way to show collections and links

This commit is contained in:
Sonny
2025-08-21 02:27:51 +02:00
parent 18fe979069
commit 4ef2b639b6
41 changed files with 785 additions and 164 deletions

View File

@@ -8,6 +8,7 @@ import {
rem,
} from '@mantine/core';
import '@mantine/core/styles.css';
import { ModalsProvider } from '@mantine/modals';
import '@mantine/spotlight/styles.css';
import { createTuyau } from '@tuyau/client';
import { TuyauProvider } from '@tuyau/inertia/react';
@@ -119,7 +120,9 @@ export function BaseLayout({ children }: { children: ReactNode }) {
return (
<TuyauProvider client={tuyauClient}>
<ColorSchemeScript />
<MantineProvider theme={customTheme}>{children}</MantineProvider>
<MantineProvider theme={customTheme}>
<ModalsProvider>{children}</ModalsProvider>
</MantineProvider>
</TuyauProvider>
);
}