import type { Metadata, Site } from "@types"; export const SITE: Site = { TITLE: "Troy Lusty", DESCRIPTION: "Hi, my name is Troy and I’m a student 3D artist studying on a BA (Hons) Game Arts and Design course in the UK.", EMAIL: "hello@troylusty.com", KEYWORDS: [ "troy", "lusty", "troylusty", "portfolio", "3d", "design", "graphics", "blender", "photoshop", "davinci", "resolve", "unreal", "engine", "godot", "games", ], AUTHOR: "Troy Lusty", LINKS: [ { name: "RSS", href: "/rss.xml", icon: "mdi:rss", }, { name: "Sitemap", href: "/sitemap-index.xml", icon: "mdi:sitemap", }, { name: "Email", href: "mailto:hello@troylusty.com", icon: "mdi:email", }, { name: "Git", href: "https://code.troylusty.com", icon: "mdi:git", }, { name: "Steam", href: "https://store.steampowered.com/developer/troy", icon: "mdi:steam", }, ], NAVLINKS: [ { name: "Projects", href: "/projects", }, { name: "Posts", href: "/posts", }, { name: "Archive", href: "/archive", }, { name: "CV", href: "/cv", }, ], }; export const HOME: Metadata = { TITLE: "Troy Lusty", DESCRIPTION: "Hi, my name is Troy and I'm a student 3D artist currently studying in my second year of an FdA Games and Interactive Design course in the UK.", }; export const PROJECTS: Metadata = { TITLE: "Projects", DESCRIPTION: "A collection of my projects, with links to repositories and demos.", }; export const POSTS: Metadata = { TITLE: "Posts", DESCRIPTION: "A collection of articles on topics I am passionate about.", }; export const ARCHIVE: Metadata = { TITLE: "Archive", DESCRIPTION: "A collection of small, unfinished, or historic personal works.", }; export const ABOUT: Metadata = { TITLE: "About", DESCRIPTION: "About me.", }; export const CV: Metadata = { TITLE: "Troy Lusty", DESCRIPTION: "Curriculum vitae.", };