improve navbar

This commit is contained in:
Reynier Matthieu
2025-02-03 14:16:13 +01:00
parent 4111a52d56
commit ab40398b9a
5 changed files with 273 additions and 69 deletions

View File

@@ -1,10 +1,11 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import './index.css';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import './index.css';
import './utils/theme.ts';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);