5-4 - convert to next.js

This commit is contained in:
Charlotte Croce 2025-05-04 21:41:58 -04:00
parent 432a72b2f2
commit a23cb6f09c
32 changed files with 9050 additions and 371 deletions

16
src/data/social.ts Normal file
View file

@ -0,0 +1,16 @@
import { SocialLink } from '@/types';
export const headerLinks: SocialLink[] = [
{ name: 'GitHub', url: 'https://github.com/charlottecroce' },
{ name: 'Forgejo', url: 'https://git.charlotte.sh' },
{ name: 'LinkedIn', url: 'https://linkedin.com/in/charlottecroce' }
];
export const footerLinks: SocialLink[] = [
{ name: 'GitHub', url: 'https://github.com/charlottecroce' },
{ name: 'Forgejo', url: 'https://git.charlotte.sh/lotte' },
{ name: 'LinkedIn', url: 'https://linkedin.com/in/charlottecroce' },
{ name: 'Mastodon', url: 'https://hachyderm.io/@charlotte200' },
{ name: 'BookWyrm', url: 'https://bookwyrm.social/user/lottie' },
{ name: 'FreshRSS', url: 'https://rss.charlotte.sh', icon: 'rss' }
];