Initial design based off original website, some things still to do

This commit is contained in:
2025-08-08 17:48:11 +09:30
parent d38c8fc694
commit ae3c38be17
185 changed files with 6799 additions and 1877 deletions
+31
View File
@@ -0,0 +1,31 @@
interface SocialPlatform {
name: string;
url: string;
icon: string;
}
const github: SocialPlatform = {
name: "GitHub",
url: "https://github.com/encie22",
icon: "fa7-brands:github"
};
const imdb: SocialPlatform = {
name: "IMDb",
url: "https://www.imdb.com/name/nm7228362/",
icon: "fa:imdb"
};
const linkedin: SocialPlatform = {
name: "LinkedIn",
url: "https://au.linkedin.com/in/nathan-cummins-38492954",
icon: "fa7-brands:linkedin"
};
const bluesky: SocialPlatform = {
name: "Bluesky",
url: "https://bsky.app/profile/nathancummins.au",
icon: "fa7-brands:bluesky"
};
export const socials: SocialPlatform[] = [imdb, linkedin, github, bluesky];