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
+11
View File
@@ -0,0 +1,11 @@
import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants/colors';
export default function AccentLink({ link, label }: { link: string, label: string }) {
return (
<a href={link} className='flex gap-1 items-center'>
<p style={{ color: colors.accent }}>{label}</p>
<IconArrowNarrowRight color={colors.accent} />
</a>
);
}