2026-02-12 23:27:13 -05:00
|
|
|
---
|
|
|
|
|
import '/src/assets/css/main.scss';
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2026-02-16 15:54:07 -05:00
|
|
|
<html lang="en" data-bs-theme="dark">
|
2026-02-12 23:27:13 -05:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
|
<title>Astro Pokemon</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<slot />
|
2026-02-16 19:54:20 -05:00
|
|
|
<script>
|
|
|
|
|
// Import only what you need
|
|
|
|
|
// import 'bootstrap/js/dist/alert';
|
2026-02-19 13:46:42 -05:00
|
|
|
import 'bootstrap/js/dist/button';
|
2026-02-16 19:54:20 -05:00
|
|
|
// import 'bootstrap/js/dist/carousel';
|
|
|
|
|
// import 'bootstrap/js/dist/collapse';
|
|
|
|
|
// import 'bootstrap/js/dist/dropdown';
|
|
|
|
|
import 'bootstrap/js/dist/modal';
|
|
|
|
|
// import 'bootstrap/js/dist/offcanvas';
|
|
|
|
|
// import 'bootstrap/js/dist/popover';
|
|
|
|
|
// import 'bootstrap/js/dist/scrollspy';
|
2026-02-19 13:46:42 -05:00
|
|
|
import 'bootstrap/js/dist/tab';
|
2026-02-16 19:54:20 -05:00
|
|
|
// import 'bootstrap/js/dist/toast';
|
|
|
|
|
// import 'bootstrap/js/dist/tooltip';
|
|
|
|
|
</script>
|
2026-02-12 23:27:13 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|