From 17afda9bd3fcb239edc56fc80b2de1152d8a47d2 Mon Sep 17 00:00:00 2001 From: SH20RAJ Date: Fri, 27 Jun 2025 13:20:33 +0530 Subject: [PATCH 1/2] feat: add new background components for Glassmorphism and Abstract Shapes styles --- app/components/background.tsx | 67 +++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/app/components/background.tsx b/app/components/background.tsx index 44773ae..47f79d4 100644 --- a/app/components/background.tsx +++ b/app/components/background.tsx @@ -1,3 +1,50 @@ +// 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 +204,16 @@ const BgDarkGrid3 = () => { }; export const BACKGROUND_OPTIONS = [ + { + name: 'Glassmorphism Light', + component: , + theme: 'light', + }, + { + name: 'Abstract Shapes Light', + component: , + theme: 'light', + }, { name: 'Background Light Gradient 1', component: , @@ -227,6 +284,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: , From 8bbabef72e9da7d64bb2ecb32bb38d2ddc8046ec Mon Sep 17 00:00:00 2001 From: SH20RAJ Date: Fri, 27 Jun 2025 13:26:24 +0530 Subject: [PATCH 2/2] feat: add new background components for Retro Neon, Organic Blob, Minimal Lines, Geometric Shapes, and Aurora Gradient styles --- app/components/background.tsx | 73 +++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/app/components/background.tsx b/app/components/background.tsx index 47f79d4..98a9f2a 100644 --- a/app/components/background.tsx +++ b/app/components/background.tsx @@ -1,3 +1,51 @@ +// 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 ( @@ -204,6 +252,31 @@ 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: ,