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
+13
View File
@@ -0,0 +1,13 @@
import { IconPointFilled } from '@tabler/icons-react';
import { colors } from '@/constants/colors';
export default function SectionLabel({ label }: { label: string }) {
return (
<div>
<h2 className="text-sm font-semibold uppercase tracking-wide text-neutral-400 flex gap-1 items-center">
<IconPointFilled color={colors.accent}/>
{label}
</h2>
</div>
);
}