diff --git a/app/components/background.tsx b/app/components/background.tsx index 44773ae..98a9f2a 100644 --- a/app/components/background.tsx +++ b/app/components/background.tsx @@ -1,3 +1,98 @@ +// Retro 80s Neon BG +const BgRetroNeon = () => ( +
+
+
+
+
+); + +// Organic Blob BG +const BgOrganicBlob = () => ( +
+ + + + + + +
+); + +// Minimal Lines BG +const BgMinimalLines = () => ( +
+
+
+
+); + +// Geometric Shapes BG +const BgGeometricShapes = () => ( +
+ + + + + + +
+); + +// Aurora Gradient BG +const BgAurora = () => ( +
+
+
+
+); +// Modern Glassmorphism Light BG +const BgGlassmorphismLight = () => { + return ( +
+
+
+
+ ); +}; + +// Abstract Shapes Light BG +const BgAbstractShapesLight = () => { + return ( +
+ + + + + + +
+ ); +}; + +// Modern Glassmorphism Dark BG +const BgGlassmorphismDark = () => { + return ( +
+
+
+
+ ); +}; + +// Abstract Shapes Dark BG +const BgAbstractShapesDark = () => { + return ( +
+ + + + + + +
+ ); +}; const BgLightGrid1 = () => { return (
@@ -157,6 +252,41 @@ const BgDarkGrid3 = () => { }; export const BACKGROUND_OPTIONS = [ + { + name: 'Retro Neon', + component: , + theme: 'dark', + }, + { + name: 'Organic Blob', + component: , + theme: 'light', + }, + { + name: 'Minimal Lines', + component: , + theme: 'light', + }, + { + name: 'Geometric Shapes', + component: , + theme: 'light', + }, + { + name: 'Aurora Gradient', + component: , + theme: 'dark', + }, + { + name: 'Glassmorphism Light', + component: , + theme: 'light', + }, + { + name: 'Abstract Shapes Light', + component: , + theme: 'light', + }, { name: 'Background Light Gradient 1', component: , @@ -227,6 +357,16 @@ export const BACKGROUND_OPTIONS = [ component: , theme: 'dark', }, + { + name: 'Glassmorphism Dark', + component: , + theme: 'dark', + }, + { + name: 'Abstract Shapes Dark', + component: , + theme: 'dark', + }, { name: 'Background Dark Gradient 2', component: ,