-
- {props.userName || 'User'}
+
+
+ {props.userName || "User"}
{/* ── Main content ─────────────────────────────────────────────────── */}
-
);
}
@@ -234,65 +309,65 @@ export default function DashboardShell(props: Props) {
// ── Shared UI primitives ──────────────────────────────────────────────────────
export const CARD = {
- background: '#fff',
- border: '1px solid #E5E7EB',
- 'border-radius': '14px',
- padding: '20px',
- 'box-shadow': '0 1px 4px rgba(0,0,0,0.06)',
+ background: "#fff",
+ border: "1px solid #E5E7EB",
+ "border-radius": "14px",
+ padding: "20px",
+ "box-shadow": "0 1px 4px rgba(0,0,0,0.06)",
} as const;
export const BTN_PRIMARY = {
- height: '38px',
- 'border-radius': '10px',
- border: 'none',
+ height: "38px",
+ "border-radius": "10px",
+ border: "none",
background: NAVY,
- color: '#fff',
- padding: '0 18px',
- 'font-size': '13px',
- 'font-weight': '700',
- cursor: 'pointer',
+ color: "#fff",
+ padding: "0 18px",
+ "font-size": "13px",
+ "font-weight": "700",
+ cursor: "pointer",
} as const;
export const BTN_ORANGE = {
- height: '38px',
- 'border-radius': '10px',
- border: 'none',
+ height: "38px",
+ "border-radius": "10px",
+ border: "none",
background: ORANGE,
- color: '#fff',
- padding: '0 18px',
- 'font-size': '13px',
- 'font-weight': '700',
- cursor: 'pointer',
+ color: "#fff",
+ padding: "0 18px",
+ "font-size": "13px",
+ "font-weight": "700",
+ cursor: "pointer",
} as const;
export const BTN_GHOST = {
- height: '38px',
- 'border-radius': '10px',
- border: '1px solid #E5E7EB',
- background: '#fff',
- color: '#374151',
- padding: '0 18px',
- 'font-size': '13px',
- 'font-weight': '600',
- cursor: 'pointer',
+ height: "38px",
+ "border-radius": "10px",
+ border: "1px solid #E5E7EB",
+ background: "#fff",
+ color: "#374151",
+ padding: "0 18px",
+ "font-size": "13px",
+ "font-weight": "600",
+ cursor: "pointer",
} as const;
export const INPUT = {
- height: '40px',
- width: '100%',
- 'border-radius': '8px',
- border: '1px solid #E5E7EB',
- padding: '0 12px',
- 'font-size': '14px',
- color: '#111827',
- background: '#fff',
- 'box-sizing': 'border-box',
+ height: "40px",
+ width: "100%",
+ "border-radius": "8px",
+ border: "1px solid #E5E7EB",
+ padding: "0 12px",
+ "font-size": "14px",
+ color: "#111827",
+ background: "#fff",
+ "box-sizing": "border-box",
} as const;
export const LABEL = {
- display: 'block',
- 'font-size': '12px',
- 'font-weight': '600',
- color: '#374151',
- 'margin-bottom': '6px',
+ display: "block",
+ "font-size": "12px",
+ "font-weight": "600",
+ color: "#374151",
+ "margin-bottom": "6px",
} as const;