PageSpeed monitoring, Polar billing, sidebar polish, frontend consistency audit #68

Merged
uz1mani merged 45 commits from staging into main 2026-03-23 19:07:54 +00:00
82 changed files with 2631 additions and 982 deletions
Showing only changes of commit 6521b694f4 - Show all commits

View File

@@ -31,14 +31,15 @@ export default function DashboardShell({
const openMobile = useCallback(() => setMobileOpen(true), [])
return (
<div className="flex h-screen overflow-hidden">
<div className="flex h-screen overflow-hidden bg-neutral-950">
<Sidebar
siteId={siteId}
mobileOpen={mobileOpen}
onMobileClose={closeMobile}
onMobileOpen={openMobile}
/>
<div className="flex-1 flex flex-col min-w-0 overflow-hidden">
{/* Content panel — rounded on all corners with slight inset to separate from sidebar */}
<div className="flex-1 flex flex-col min-w-0 overflow-hidden my-2 mr-2 rounded-2xl bg-neutral-900 border border-neutral-800/60">
<ContentHeader onMobileMenuOpen={openMobile} />
<main className="flex-1 overflow-y-auto pt-4">
{children}

View File

@@ -1,6 +1,6 @@
"use client";
import { motion, useSpring, useTransform } from "motion/react";
import { motion, useSpring, useTransform } from "framer-motion";
import {
type CSSProperties,
type ReactNode,

View File

@@ -12,7 +12,7 @@ import {
motion,
useMotionTemplate,
useSpring,
} from "motion/react";
} from "framer-motion";
import {
Children,
createContext,

View File

@@ -9,7 +9,7 @@ import {
AnimatePresence,
motion,
useSpring,
} from "motion/react";
} from "framer-motion";
import {
Children,
createContext,

View File

@@ -1,6 +1,6 @@
"use client";
import { motion, useSpring, useTransform } from "motion/react";
import { motion, useSpring, useTransform } from "framer-motion";
import {
type CSSProperties,
type ReactNode,