summaryrefslogtreecommitdiffstats
path: root/src/utils/config.ts
blob: 1c227cc928a429c65119e5e1e9c9478eda4580d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const settings = {
  name: 'Armand Philippot',
  baseline: 'Front-end developer',
  copyright: {
    startYear: '2012',
    endYear: new Date().getFullYear(),
  },
  locales: {
    defaultLocale: 'fr',
    defaultCountry: 'FR',
    supported: ['en', 'fr'],
  },
  postsPerPage: 10,
  twitterId: '@ArmandPhilippot',
  url: process.env.NEXT_PUBLIC_FRONTEND_URL,
};