13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { type SocialMedia } from "./types";
|
|
import { socials as socialsConfig } from "./config";
|
|
|
|
/**
|
|
* Social media profiles
|
|
* This is now loaded from a JSON configuration file
|
|
* located at /config/socials.json
|
|
*
|
|
* To modify social profiles, edit that JSON file rather than
|
|
* modifying the values here.
|
|
*/
|
|
export const socials: SocialMedia[] = socialsConfig;
|