25 lines
781 B
TypeScript
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;
|