From e19321a2b74e4029be16a0efef2b2b9a916d2a20 Mon Sep 17 00:00:00 2001 From: seriouselly Date: Tue, 16 Jun 2026 02:09:36 +0700 Subject: [PATCH] refactor(ui): remove local image assets and use external URLs - Delete the `assets/images` directory to reduce repository size and footprint. - Update `dashboard-page.tsx` to fetch background images from external URLs instead of local file imports. --- apps/web/src/pages/dashboard-page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/pages/dashboard-page.tsx b/apps/web/src/pages/dashboard-page.tsx index ebe71ea..37f5228 100644 --- a/apps/web/src/pages/dashboard-page.tsx +++ b/apps/web/src/pages/dashboard-page.tsx @@ -6,7 +6,6 @@ import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { useUiStore } from "@/store/ui-store"; import { apiClient } from "@/lib/api-client"; -import bg from "@/assets/images/dashboard-bg.webp"; export function DashboardPage() { const { dashboardCompact } = useUiStore(); @@ -74,7 +73,7 @@ export function DashboardPage() { {/* Hero header */}