summaryrefslogtreecommitdiffstats
path: root/src/components/Layouts
Commit message (Collapse)AuthorAgeFilesLines
* chore(baseline): handle baseline translation manuallyArmand Philippot2022-01-301-1/+4
| | | | | | I cannot use formatjs to translate the website baseline since I need an async function to load the message. If I use the getIntlInstance helper outside NextJS, webpack is complaining about fs and path.
* refactor(config): move config from config dir to utilsArmand Philippot2022-01-291-18/+18
|
* chore: replace lingui functions with react-intlArmand Philippot2022-01-291-4/+10
|
* chore: add favicon, webmanifest and theme color preferencesArmand Philippot2022-01-271-2/+16
|
* chore: add opengraph and twitter metaArmand Philippot2022-01-191-0/+8
|
* refactor(config): move defaultLocale as property of config.localesArmand Philippot2022-01-191-1/+1
| | | | | I will need the country code, so I think it makes more sense to gather them inside the same property.
* chore: add structured data using schema.org and JSON-LDArmand Philippot2022-01-191-0/+24
| | | | I also added the featured image on single article.
* fix: remove focus on route changeArmand Philippot2022-01-131-1/+10
|
* chore: add feed formats to document headArmand Philippot2022-01-131-0/+22
|
* refactor: move Prism hook from layout to article pageArmand Philippot2022-01-041-17/+1
| | | | | I will not use Prism elsewhere, so it makes more sense to call Prism only inside articles.
* chore(prism): replace Coldark theme with a custom themeArmand Philippot2022-01-031-1/+0
|
* chore: add line numbers to all prism blocks and translate copy buttonArmand Philippot2022-01-031-1/+12
|
* chore: add prismjs for syntax highlightingArmand Philippot2021-12-301-1/+7
|
* chore: add a skip to content linkArmand Philippot2021-12-221-0/+2
|
* chore: add a breadcrumb componentArmand Philippot2021-12-211-1/+13
|
* fix: change branding title tag on homepageArmand Philippot2021-12-151-3/+9
| | | | I forgot to pass isHome arg...
* chore: change app to use a layoutArmand Philippot2021-12-131-0/+16
I can now insert header/footer on each pages.