My personal website
1export const container = 'flex flex-col gap-6 sticky top-0';
2
3export const innerContainer = 'flex flex-col gap-6';
4
5// Avatar - no border needed, Aside handles the separator
6export const avatar = 'w-32 h-32 md:w-48 md:h-48 aspect-square object-cover';
7
8export const infoSection = 'flex flex-col gap-4';
9
10export const name = 'text-4xl font-medium';
11
12// Secondary text: 60% opacity of current text color (inherits from page theme)
13export const detail = 'text-xl opacity-60';
14
15export const section = 'flex flex-col gap-2';
16
17export const sectionTitle = 'text-xl font-medium';
18
19export const connectLinks = 'flex flex-col gap-2 text-lg';