diff --git a/frontend/src/app/components/GlassPanel.tsx b/frontend/src/app/components/GlassPanel.tsx
new file mode 100644
index 0000000..654c62b
--- /dev/null
+++ b/frontend/src/app/components/GlassPanel.tsx
@@ -0,0 +1,14 @@
+import React from "react";
+
+interface GlassPanelProps {
+ children: React.ReactNode;
+ className?: string;
+}
+
+export function GlassPanel({ children, className }: GlassPanelProps) {
+ return (
+
+ {children}
+
+ );
+}
diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx
index f5f6967..6978cbf 100644
--- a/frontend/src/app/page.tsx
+++ b/frontend/src/app/page.tsx
@@ -29,6 +29,7 @@ import {
import { WalletModal } from "./components/WalletModal";
import { ChatInterface, type ChatMessage } from "./components/ChatInterface";
import { GoalTracker } from "./components/GoalTracker";
+import { GlassPanel } from "./components/GlassPanel";
export default function Home() {
const {
@@ -172,7 +173,7 @@ export default function Home() {
/>
{/* Left Panel - Dashboard */}
-
+
Smasage Portfolio
Real-time on-chain tracking • Stellar Mainnet 🚀
@@ -231,16 +232,16 @@ export default function Home() {
)}
-
+
{/* Right Panel - Chat Agent */}
-
+
-
+
>