diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4efaeb46f..68d655857 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -23,7 +23,6 @@ jobs: NEXT_PUBLIC_SUPABASE_URL: https://placeholder.supabase.co NEXT_PUBLIC_SUPABASE_ANON_KEY: placeholder-anon-key SUPABASE_SERVICE_ROLE_KEY: placeholder-service-role-key - PLAYWRIGHT_SERVER_MODE: start steps: - uses: actions/checkout@v4 @@ -35,9 +34,6 @@ jobs: - name: Install app dependencies run: npm ci - - name: Build app - run: npm run build - - name: Install Playwright browsers run: npx playwright install --with-deps chromium diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 08f0d988f..b21877b28 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -1,4 +1,4 @@ -import LazyWidget from "@/components/LazyWidget"; +import LazyWidget from "@/components/LazyWidget"; import DiscussionsWidget from "@/components/DiscussionsWidget"; import CommunityMetrics from "@/components/CommunityMetrics"; import GoalTracker from "@/components/GoalTracker"; @@ -107,7 +107,10 @@ export default async function DashboardPage() { {/* Action bar */} -
+
- {/* ── Row 1: Contribution graph (2/3) + Streak sidebar (1/3) ── */} -
+ {/* -- Row 1: Contribution graph (2/3) + Streak sidebar (1/3) -- */} +
{/* Left: contribution graph + heatmap */}
@@ -170,8 +173,8 @@ export default async function DashboardPage() {
- {/* ── Row 2: PR metrics + Community metrics ── */} -
+ {/* -- Row 2: PR metrics + Community metrics -- */} +
@@ -207,8 +210,8 @@ export default async function DashboardPage() {
- {/* ── Row 3: Issues (2/3) + CI analytics (1/3) ── */} -
+ {/* -- Row 3: Issues (2/3) + CI analytics (1/3) -- */} +
}> @@ -240,7 +243,7 @@ export default async function DashboardPage() {
- {/* ── Row 4: Top repos + Language breakdown + Goal tracker ── */} + {/* -- Row 4: Top repos + Language breakdown + Goal tracker -- */}
}> diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 80e33f0e9..a2f1c7720 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import CustomCursor from "@/components/CustomCursor"; import type { Metadata, Viewport } from "next"; import { Inter } from "next/font/google"; +import AppNavbar from "@/components/AppNavbar"; import Footer from "@/components/Footer"; import DeferredVercelMetrics from "@/components/DeferredVercelMetrics"; import Providers from "./providers"; @@ -74,12 +75,15 @@ export default async function RootLayout({ - +
- {children} + + + {children} +