| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | build(deps): remove lingui | Armand Philippot | 2022-01-29 | 5 | -1599/+0 | |
| | | ||||||
| * | chore: replace lingui functions with react-intl | Armand Philippot | 2022-01-29 | 54 | -341/+2314 | |
| | | ||||||
| * | chore(i18n): replace i18n provider and helpers | Armand Philippot | 2022-01-29 | 15 | -192/+131 | |
| | | ||||||
| * | fix: handle translation with lingui | Armand Philippot | 2022-01-28 | 19 | -173/+1231 | |
| | | | | | | | | | The previous method was not working so I tried a different approach. Translation is loaded but I'm still getting warnings: * Plurals for locale undefined aren't loaded * Text content did not match I can't figure how to fix them... | |||||
| * | chore: translate website to French | Armand Philippot | 2022-01-27 | 2 | -4/+550 | |
| | | ||||||
| * | chore: update titles and meta desc | Armand Philippot | 2022-01-27 | 1 | -13/+14 | |
| | | ||||||
| * | chore: add favicon, webmanifest and theme color preferences | Armand Philippot | 2022-01-27 | 1 | -2/+16 | |
| | | ||||||
| * | chore: update logo | Armand Philippot | 2022-01-27 | 6 | -175/+80 | |
| | | | | | | Adjust previous colors to fit the new website and add a dark version to better fit with the dark theme. | |||||
| * | chore: update project preview appearance | Armand Philippot | 2022-01-27 | 6 | -28/+40 | |
| | | ||||||
| * | fix(project): make sure the project cover is displayed | Armand Philippot | 2022-01-27 | 4 | -19/+20 | |
| | | | | | | | | | Next.js does not support the dynamic import of images. Sometimes the images was displayed and other times the loading did not finish. So even if I would like to keep the content in a same place, I choose to put the projects covers inside the public directory. Then I use a hasCover boolean to determine if the project cover need to be printed. | |||||
| * | fix: make progress bar styles consistent between browsers | Armand Philippot | 2022-01-27 | 1 | -0/+8 | |
| | | | | | | On Chromium the progress bar background was not applied. However the border is still thicker than on Firefox. | |||||
| * | chore: use mdx with custom components | Armand Philippot | 2022-01-26 | 1 | -2/+10 | |
| | | ||||||
| * | chore(widgets): update recent posts layout | Armand Philippot | 2022-01-26 | 1 | -4/+18 | |
| | | | | | Replace flex with grid to avoid cards reflow on resize. | |||||
| * | chore: add a Gallery component for MDX rendering | Armand Philippot | 2022-01-26 | 3 | -1/+56 | |
| | | ||||||
| * | chore: create a ResponsiveImage component for MDX rendering | Armand Philippot | 2022-01-26 | 3 | -1/+87 | |
| | | ||||||
| * | chore: create a Link component for MDX rendering | Armand Philippot | 2022-01-26 | 2 | -1/+25 | |
| | | ||||||
| * | chore: create a CodeBlock component for MDX rendering | Armand Philippot | 2022-01-26 | 2 | -0/+41 | |
| | | ||||||
| * | fix: replace dynamic import with require | Armand Philippot | 2022-01-26 | 1 | -4/+4 | |
| | | | | | | | The table of contents was not able to get the headings list on first render because of dynamic import. By using require, it works as expected. | |||||
| * | chore: adjust colors and grid layout | Armand Philippot | 2022-01-25 | 6 | -44/+25 | |
| | | ||||||
| * | chore: wrap dates with time tag | Armand Philippot | 2022-01-25 | 5 | -70/+90 | |
| | | ||||||
| * | chore: add reading time in posts meta | Armand Philippot | 2022-01-25 | 9 | -30/+130 | |
| | | ||||||
| * | chore: display a progress bar before load more button | Armand Philippot | 2022-01-25 | 4 | -10/+110 | |
| | | | | | | Since I'm using cursor pagination, users cannot know if there is a lot of posts available. With this cursor, they can verify the progression. | |||||
| * | chore: display total found posts in page meta | Armand Philippot | 2022-01-25 | 9 | -12/+41 | |
| | | ||||||
| * | refactor(project): replace repo api call method with hook and swr | Armand Philippot | 2022-01-24 | 5 | -38/+45 | |
| | | | | | | | | | | | Instead of using post slug and an environment variable to fetch repo data, I use the given repo in each project MDX file. It allows me to fetch data from another user/organization if needed. To make it work, I no longer provide the full URL in MDX file. The new format is: "User/repo-slug". I also replaced the fetch method with SWR to improve caching and to avoid React complaining about cleanup useEffect. | |||||
| * | refactor: rename all subject occurrences into topic | Armand Philippot | 2022-01-23 | 14 | -192/+181 | |
| | | | | | | I change the name in graphql endpoint, so I decided to repercute this change here. | |||||
| * | chore: add sharing widget to single project view | Armand Philippot | 2022-01-20 | 1 | -1/+4 | |
| | | ||||||
| * | chore: include projects inside breadcrumb | Armand Philippot | 2022-01-20 | 1 | -1/+22 | |
| | | ||||||
| * | chore: add a project summary component | Armand Philippot | 2022-01-20 | 5 | -0/+217 | |
| | | ||||||
| * | chore: add projects to main nav | Armand Philippot | 2022-01-20 | 9 | -12/+212 | |
| | | | | | | | I redesign a little the main nav on small screens so it can takes two columns when the screen height is low. I change the 2xs breakpoint to 500px instead of 400px. | |||||
| * | chore: add single project view | Armand Philippot | 2022-01-20 | 5 | -41/+218 | |
| | | ||||||
| * | chore: add a page for projects | Armand Philippot | 2022-01-20 | 10 | -0/+402 | |
| | | ||||||
| * | chore: allow ReactElement as intro in PostHeader | Armand Philippot | 2022-01-19 | 1 | -7/+22 | |
| | | ||||||
| * | chore: add opengraph and twitter meta | Armand Philippot | 2022-01-19 | 10 | -21/+80 | |
| | | ||||||
| * | refactor(config): move defaultLocale as property of config.locales | Armand Philippot | 2022-01-19 | 13 | -18/+22 | |
| | | | | | | 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-LD | Armand Philippot | 2022-01-19 | 16 | -65/+600 | |
| | | | | | I also added the featured image on single article. | |||||
| * | chore: improve keyboard navigation | Armand Philippot | 2022-01-18 | 2 | -2/+36 | |
| | | | | | | Add some focus styles mainly in toolbar components to help identify active items when navigating with a keyboard. | |||||
| * | feat: add a setting to disable animations and transitions | Armand Philippot | 2022-01-17 | 3 | -0/+45 | |
| | | | | | | Some users may not know the reduced motion settings, so I provide an option directly on the website to disable animations. | |||||
| * | chore: add a service to handle local storage | Armand Philippot | 2022-01-17 | 1 | -0/+26 | |
| | | ||||||
| * | refactor(settings): make toggle reusable | Armand Philippot | 2022-01-17 | 7 | -48/+94 | |
| | | | | | | Toggle will be used for others settings so I extract the functionnality from ThemeToggle. | |||||
| * | feat: implement dark mode | Armand Philippot | 2022-01-17 | 29 | -109/+298 | |
| | | ||||||
| * | chore: replace copyright icon import with custom component | Armand Philippot | 2022-01-17 | 5 | -6/+38 | |
| | | | | | | It allows me to set the colors with CSS and it will be easier to implement dark mode. | |||||
| * | refactor(styles): rename shadow and border variables | Armand Philippot | 2022-01-16 | 35 | -157/+141 | |
| | | ||||||
| * | chore: add a spinner when content is loading | Armand Philippot | 2022-01-16 | 8 | -47/+146 | |
| | | ||||||
| * | chore(meta): add a link to comments on single post pages | Armand Philippot | 2022-01-16 | 2 | -2/+9 | |
| | | ||||||
| * | chore(comments): handle comment reply | Armand Philippot | 2022-01-15 | 7 | -24/+92 | |
| | | ||||||
| * | fix: keep logo consistent on zoom | Armand Philippot | 2022-01-15 | 1 | -1/+1 | |
| | | ||||||
| * | chore: update sidebar and widgets styles | Armand Philippot | 2022-01-15 | 41 | -165/+547 | |
| | | | | | | | | | | I'm now using a widget that can be expanded/collapsed. It also allows me to handle more effectively widgets overflow and to avoid styles repetitions. However, with stylelint rule "no-descending-specificity", I'm not sure if the stylesheets are really logical... Maybe I should deactivate this rule. | |||||
| * | refactor(buttons): add a tertiary kind (previously links styles) | Armand Philippot | 2022-01-14 | 3 | -51/+19 | |
| | | ||||||
| * | chore(homepage): add icons to some buttons | Armand Philippot | 2022-01-14 | 4 | -9/+32 | |
| | | ||||||
| * | chore: customize text selection colors | Armand Philippot | 2022-01-14 | 3 | -0/+8 | |
| | | ||||||
