devscard/src/data/config.ts
Szymon Kin b249607f77
Setup favicon generation (#178)
Co-authored-by: Konrad Szwarc <konrad.szwarc.dev@gmail.com>
2023-01-26 21:19:05 +01:00

25 lines
781 B
TypeScript

import type { Config } from '@/types/data';
import { enUS } from 'date-fns/locale';
import type { ReadonlyDeep } from 'type-fest';
const config = {
i18n: {
locale: enUS,
dateFormat: 'MMMM yyyy',
translations: {
now: 'now',
},
},
meta: {
title: 'Mark Freeman - Senior React Developer',
description:
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sodales ac dui at vestibulum. In condimentum metus id dui tincidunt, in blandit mi vehicula.',
faviconPath: '/src/assets/my-image.jpeg',
},
pdf: {
footer:
'I hereby give consent for my personal data included in my application to be processed for the purposes of the recruitment process.',
},
} as const satisfies ReadonlyDeep<Config>;
export default config;