justin.deal/src/lib/socials.ts
Justin Deal a80b2a5e01
All checks were successful
Build and Deploy / build (push) Successful in 40s
Make configs json and have light/dark images for socials
2025-05-04 16:59:10 -07:00

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;