justin.deal/src/lib/socials.ts

13 lines
368 B
TypeScript
Raw Normal View History

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;