troylusty.com/src/consts.ts

96 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-12-23 21:18:55 +00:00
import type { Metadata, Site } from "@types";
export const SITE: Site = {
TITLE: "Troy Lusty",
DESCRIPTION:
"Hi, my name is Troy and Im 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: [
{
2025-05-06 22:50:48 +01:00
name: "RSS Feed",
href: "/feed.xml",
2024-12-23 21:18:55 +00:00
icon: "mdi:rss",
},
{
name: "Sitemap",
href: "/sitemap-index.xml",
icon: "mdi:sitemap",
},
{
name: "Curriculum vitae",
href: "/cv",
icon: "mdi:trophy",
},
2024-12-23 21:18:55 +00:00
{
name: "Email",
href: "mailto:hello@troylusty.com",
icon: "mdi:email",
},
{
2025-03-08 09:48:04 +00:00
name: "Git",
2025-05-05 21:46:09 +01:00
href: "https://code.threepop.com",
2025-03-08 09:48:04 +00:00
icon: "mdi:git",
2024-12-23 21:18:55 +00:00
},
{
name: "Steam",
2024-12-23 21:18:55 +00:00
href: "https://store.steampowered.com/developer/troy",
icon: "mdi:steam",
},
],
NAVLINKS: [
{
2025-03-08 09:48:04 +00:00
name: "Projects",
2024-12-23 21:18:55 +00:00
href: "/projects",
},
{
2025-03-08 09:48:04 +00:00
name: "Posts",
2024-12-23 21:18:55 +00:00
href: "/posts",
},
],
};
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.",
2024-12-23 21:18:55 +00:00
};
export const POSTS: Metadata = {
TITLE: "Posts",
DESCRIPTION: "A collection of articles on topics I am passionate about.",
};
export const ABOUT: Metadata = {
TITLE: "About",
DESCRIPTION: "About me.",
};
export const CV: Metadata = {
TITLE: "Troy Lusty",
DESCRIPTION: "Curriculum vitae.",
2024-12-23 21:18:55 +00:00
};