mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 09:31:21 +00:00
18 lines
670 B
TypeScript
18 lines
670 B
TypeScript
export const siteConfig = {
|
|
name: 'hellob.art',
|
|
author: 'Bart van der Braak',
|
|
url: import.meta.env.VERCEL_URL,
|
|
ogImage: `https://${import.meta.env.VERCEL_URL}/og.png`,
|
|
description: 'Personal website of Bart van der Braak, DevOps/Platform Engineer at Triple.',
|
|
links: {
|
|
twitter: 'https://twitter.com/bartvdbraak',
|
|
linkedIn: 'https://www.linkedin.com/in/bartvdbraak',
|
|
gitHubProfile: 'https://github.com/bartvdbraak',
|
|
gitHubProject: 'https://github.com/bartvdbraak',
|
|
shadcnSvelte: 'https://www.shadcn-svelte.com/',
|
|
vercel: 'https://vercel.com/'
|
|
},
|
|
keywords: `Bart van der Braak,DevOps,Azure,Triple,Cloud`
|
|
};
|
|
|
|
export type SiteConfig = typeof siteConfig;
|