se agregó la pagina principal

This commit is contained in:
evenegas
2025-06-12 22:39:35 -06:00
parent 9a142011ec
commit 56e2b4b8d6
40 changed files with 1575 additions and 17368 deletions
+17
View File
@@ -0,0 +1,17 @@
'use client';
import { useEffect } from 'react';
export default function BootstrapClient() {
useEffect(() => {
const loadBootstrap = async () => {
if (typeof document !== 'undefined') {
// @ts-expect-error: Bootstrap is loaded dynamically
await import('bootstrap/dist/js/bootstrap.bundle.min.js');
}
};
loadBootstrap();
}, []);
return null;
}