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