Updated some configs

This commit is contained in:
2025-08-09 18:26:44 -04:00
parent 46aa1e4dda
commit 689f446806
9 changed files with 1793 additions and 113 deletions

View File

@@ -26,6 +26,7 @@ export default function BouncingDots({
r="3"
className={className}
stroke={stroke}
fill={fill}
>
<animate
id={`firstBouncingDots_${id}`}
@@ -43,6 +44,7 @@ export default function BouncingDots({
r="3"
className={className}
stroke={stroke}
fill={fill}
>
<animate
id={`secondBouncingDots_${id}`}
@@ -60,6 +62,7 @@ export default function BouncingDots({
r="3"
className={className}
stroke={stroke}
fill={fill}
>
<animate
id={`lastBouncingDots_${id}`}

6
lib/component/theme.ts Normal file
View File

@@ -0,0 +1,6 @@
import ThemeProvider from "$/providers/theme/ThemeProvider";
export {
ThemeProvider
};

View File

@@ -1 +1,6 @@
import ToasterProvider from "$/providers/toaster/ToasterProvider";
export {
ToasterProvider
};