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;