From d5a9c9dca9a00fedcd6890ad8ba3561d04450cfb Mon Sep 17 00:00:00 2001 From: Antoine Estienne Date: Sun, 28 Sep 2025 14:01:30 +0200 Subject: [PATCH 1/2] add theo as code owner --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c733957..90432fc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # Global owners -* @joelamouche @oscarwroche +* @joelamouche @oscarwroche @Teddy1792 From f3dc7e94924df433d45b1e8f486bd76b8653ca82 Mon Sep 17 00:00:00 2001 From: Antoine Estienne Date: Sun, 28 Sep 2025 14:06:57 +0200 Subject: [PATCH 2/2] refactor out background --- frontend/src/components/AppBackground.tsx | 181 ++++++++++++++++++++++ frontend/src/components/AppWrapper.tsx | 180 +-------------------- 2 files changed, 183 insertions(+), 178 deletions(-) create mode 100644 frontend/src/components/AppBackground.tsx diff --git a/frontend/src/components/AppBackground.tsx b/frontend/src/components/AppBackground.tsx new file mode 100644 index 0000000..6f7747f --- /dev/null +++ b/frontend/src/components/AppBackground.tsx @@ -0,0 +1,181 @@ +export function AppBackground() { + return ( +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ ); +} diff --git a/frontend/src/components/AppWrapper.tsx b/frontend/src/components/AppWrapper.tsx index afee658..4aa2aa7 100644 --- a/frontend/src/components/AppWrapper.tsx +++ b/frontend/src/components/AppWrapper.tsx @@ -12,6 +12,7 @@ import { } from "@/components/ui/sidebar"; import { AppSidebar } from "@/components/AppSidebar"; import { ActivityTokenBalance } from "@/components/ActivityTokenBalance"; +import { AppBackground } from "@/components/AppBackground"; const queryClient = new QueryClient(); @@ -25,184 +26,7 @@ export function AppWrapper({ children }: Web3ProviderProps) {
- {/* === SVG Background === */} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ {/* === Foreground (sidebar, header, main) === */}