chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+32
View File
@@ -0,0 +1,32 @@
// Neutrals
const bg = "#0a0a0a";
const bgElevated = "#1c1c1c";
const border = "#2e2e2e";
const textMuted = "#6b6b6b";
const text = "#ededed";
// Accent
const accent = "#d4a24a";
// Hover states
const bgElevatedHover = "#262626";
const borderHover = "#3d3d3d";
const textMutedHover = "#9a9a9a";
const textHover = "#ffffff";
const accentHover = "#e6b966";
export const colors = {
bg,
bgElevated,
border,
textMuted,
text,
accent,
hover: {
bgElevated: bgElevatedHover,
border: borderHover,
textMuted: textMutedHover,
text: textHover,
accent: accentHover,
},
};