refactor: extract contact links to shared config
This commit is contained in:
@@ -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,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';
|
||||
|
||||
Reference in New Issue
Block a user