chore: update components folder structure, add constants, update existing layout components, scaffold pages
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user