34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
// Place any global data in this file.
|
|
// You can import this data from anywhere in your site by using the `import` keyword.
|
|
|
|
export const SITE_TITLE = 'Nicholai Vogel | VFX Artist & Technical Generalist';
|
|
export const SITE_DESCRIPTION = 'Visual effects artist and technical generalist with 10 years of experience creating end-to-end visual content for Post Malone, Stinkfilms, and Adidas. Founder of Biohazard VFX.';
|
|
|
|
// Contact Information
|
|
export const CONTACT_EMAIL = 'nicholai@nicholai.work';
|
|
export const CONTACT_PHONE = '719 660 4281';
|
|
|
|
// Location
|
|
export const LOCATION = 'COLORADO SPRINGS';
|
|
export const TIMEZONE = 'America/Denver';
|
|
export const TIMEZONE_ABBR = 'MST';
|
|
|
|
// Status
|
|
export const AVAILABILITY_STATUS = 'AVAILABLE FOR WORK';
|
|
|
|
// Social Links
|
|
export const SOCIAL_LINKS = {
|
|
website: 'https://nicholai.work',
|
|
instagram: '@nicholai.exe',
|
|
linkedin: 'https://linkedin.com/in/nicholai-vogel',
|
|
biohazard: 'https://biohazardvfx.com'
|
|
};
|
|
|
|
// Navigation
|
|
export const NAV_LINKS = [
|
|
{ href: '#about', label: '01. Profile' },
|
|
{ href: '#work', label: '02. Selected Works' },
|
|
{ href: '#experience', label: '03. History' },
|
|
{ href: '#skills', label: '04. Stack' }
|
|
];
|