95 lines
1.9 KiB
TypeScript
95 lines
1.9 KiB
TypeScript
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 Feed",
|
||
href: "/feed.xml",
|
||
icon: "mdi:rss",
|
||
},
|
||
{
|
||
name: "Sitemap",
|
||
href: "/sitemap-index.xml",
|
||
icon: "mdi:sitemap",
|
||
},
|
||
{
|
||
name: "Curriculum vitae",
|
||
href: "/cv",
|
||
icon: "mdi:trophy",
|
||
},
|
||
{
|
||
name: "Email",
|
||
href: "mailto:hello@troylusty.com",
|
||
icon: "mdi:email",
|
||
},
|
||
{
|
||
name: "Git",
|
||
href: "https://code.threepop.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",
|
||
},
|
||
],
|
||
};
|
||
|
||
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 ABOUT: Metadata = {
|
||
TITLE: "About",
|
||
DESCRIPTION: "About me.",
|
||
};
|
||
|
||
export const CV: Metadata = {
|
||
TITLE: "Troy Lusty",
|
||
DESCRIPTION: "Curriculum vitae.",
|
||
};
|