From 567479262948507b287c8459c7d00f467c2ee7ff Mon Sep 17 00:00:00 2001 From: Deploy Bot Date: Thu, 29 Jan 2026 00:31:37 +0000 Subject: [PATCH] Created a reusable BubbleContainer component with glassmorphism design featuring transparency, rounded borders, light/dark mode support, and multiple variants (default, subtle, prominent) with different padding options. Updated the About page to serve as a component library showcase demonstrating the BubbleContainer's various uses and configurations. --- src/components/ui/BubbleContainer.vue | 166 ++++++++++++++ src/views/AboutView.vue | 316 +++++++++++++++++++++++++- 2 files changed, 474 insertions(+), 8 deletions(-) create mode 100644 src/components/ui/BubbleContainer.vue diff --git a/src/components/ui/BubbleContainer.vue b/src/components/ui/BubbleContainer.vue new file mode 100644 index 0000000..2574b4d --- /dev/null +++ b/src/components/ui/BubbleContainer.vue @@ -0,0 +1,166 @@ + + + + + \ No newline at end of file diff --git a/src/views/AboutView.vue b/src/views/AboutView.vue index 756ad2a..f081109 100644 --- a/src/views/AboutView.vue +++ b/src/views/AboutView.vue @@ -1,15 +1,315 @@ + + - + \ No newline at end of file -- 2.30.2