2025-05-03 16:07:12 -07:00
|
|
|
import { type SocialMedia } from "./types";
|
2025-05-04 16:59:10 -07:00
|
|
|
import { socials as socialsConfig } from "./config";
|
2025-05-03 16:07:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Social media profiles
|
2025-05-04 16:59:10 -07:00
|
|
|
* 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.
|
2025-05-03 16:07:12 -07:00
|
|
|
*/
|
2025-05-04 16:59:10 -07:00
|
|
|
export const socials: SocialMedia[] = socialsConfig;
|