troylusty.com/src/consts.ts
2024-12-23 21:18:55 +00:00

102 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: [
{
name: "RSS feed",
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: "GitHub",
href: "https://github.com/troylusty",
icon: "mdi:github",
},
{
name: "Steam developer",
href: "https://store.steampowered.com/developer/troy",
icon: "mdi:steam",
},
],
NAVLINKS: [
{
name: "home",
href: "/",
},
{
name: "projects",
href: "/projects",
},
{
name: "posts",
href: "/posts",
},
{
name: "curriculum vitae",
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.",
HOMESETTINGS: {
NUM_POSTS_ON_HOMEPAGE: 2,
NUM_PROJECTS_ON_HOMEPAGE: 6,
},
};
export const CV: Metadata = {
TITLE: "Troy Lusty",
DESCRIPTION: "Curriculum vitae.",
};
export const POSTS: Metadata = {
TITLE: "Posts",
DESCRIPTION: "A collection of articles on topics I am passionate about.",
};
export const WORK: Metadata = {
TITLE: "Work",
DESCRIPTION: "Where I have worked and what I have done.",
};
export const PROJECTS: Metadata = {
TITLE: "Projects",
DESCRIPTION:
"A collection of my projects, with links to repositories and demos.",
};