refactor: extract contact links to shared config

This commit is contained in:
Ilia Mashkov
2026-04-24 10:07:25 +03:00
parent fce4672218
commit f3b4e1d064
4 changed files with 30 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
/**
* Static contact and social links shown in navigation.
*/
export const CONTACT_LINKS = {
/**
* Primary contact email address
*/
email: 'hello@allmy.work',
/**
* LinkedIn profile URL
*/
linkedin: 'https://linkedin.com',
/**
* Instagram profile URL
*/
instagram: 'https://instagram.com',
/**
* Are.na profile URL
*/
arena: 'https://are.na',
} as const;
+1
View File
@@ -1,5 +1,6 @@
export type { ClassValue } from 'clsx';
export { cn } from './cn';
export { CONTACT_LINKS } from './config';
export * from './fonts';
export * from './formatDate';
export { groupByKey } from './groupByKey';