| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | chore(prism): translate color scheme toggle button | Armand Philippot | 2022-02-08 | 1 | -1/+5 |
| | | |||||
| * | refactor(prism): rename color scheme attributes and remove prefix | Armand Philippot | 2022-02-08 | 1 | -1/+1 |
| | | |||||
| * | chore: change appearance of hamburger icon on hover/focus | Armand Philippot | 2022-02-02 | 1 | -0/+44 |
| | | |||||
| * | chore: close mainNav on click outside or route change | Armand Philippot | 2022-02-01 | 1 | -2/+25 |
| | | |||||
| * | chore: move pagination cursor title in a separate div | Armand Philippot | 2022-02-01 | 4 | -11/+28 |
| | | | | | | | The progress bar will be clearer for everyone if the information about the number of loaded articles is printed without hovering the progress bar. | ||||
| * | chore: animate main with fade in effect | Armand Philippot | 2022-02-01 | 1 | -0/+4 |
| | | |||||
| * | chore: animate branding | Armand Philippot | 2022-02-01 | 2 | -4/+75 |
| | | |||||
| * | chore: animate toolbar entrance | Armand Philippot | 2022-02-01 | 1 | -0/+8 |
| | | |||||
| * | chore: add a new settings to handle prism theme from toolbar | Armand Philippot | 2022-02-01 | 3 | -0/+61 |
| | | |||||
| * | chore: add a Prism plugin to set code blocks theme | Armand Philippot | 2022-01-31 | 1 | -0/+1 |
| | | |||||
| * | chore(icons): update main nav icons | Armand Philippot | 2022-01-31 | 2 | -24/+24 |
| | | | | | | | | The CV link text seemed misaligned before. By moving the "diploma" to the bottom, the look is better I think. Also, the computer icon was a little small compared to the others, so I fixed it. | ||||
| * | chore(baseline): handle baseline translation manually | Armand Philippot | 2022-01-30 | 2 | -3/+14 |
| | | | | | | | 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 utils | Armand Philippot | 2022-01-29 | 10 | -58/+56 |
| | | |||||
| * | refactor(widgets): move social media websites from config to widget | Armand Philippot | 2022-01-29 | 1 | -2/+39 |
| | | | | | | | I only use this config inside the SocialMedia widget so it makes more sense to gather them. In addition I can translate the website names if needed. | ||||
| * | refactor(widgets): move sharing websites from config to sharing widget | Armand Philippot | 2022-01-29 | 1 | -3/+88 |
| | | | | | | | I only use these websites inside the sharing widget so it makes more sense to gather them. In addition, I can translate the website name if needed. | ||||
| * | chore: replace lingui functions with react-intl | Armand Philippot | 2022-01-29 | 35 | -168/+677 |
| | | |||||
| * | chore: add favicon, webmanifest and theme color preferences | Armand Philippot | 2022-01-27 | 1 | -2/+16 |
| | | |||||
| * | chore: update logo | Armand Philippot | 2022-01-27 | 3 | -1/+56 |
| | | | | | | 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 | 3 | -21/+32 |
| | | |||||
| * | fix(project): make sure the project cover is displayed | Armand Philippot | 2022-01-27 | 1 | -5/+5 |
| | | | | | | | | | 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(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 |
| | | |||||
| * | chore: adjust colors and grid layout | Armand Philippot | 2022-01-25 | 1 | -31/+0 |
| | | |||||
| * | chore: wrap dates with time tag | Armand Philippot | 2022-01-25 | 4 | -70/+74 |
| | | |||||
| * | chore: add reading time in posts meta | Armand Philippot | 2022-01-25 | 3 | -24/+69 |
| | | |||||
| * | chore: display a progress bar before load more button | Armand Philippot | 2022-01-25 | 2 | -0/+58 |
| | | | | | | 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 | 2 | -9/+23 |
| | | |||||
| * | refactor(project): replace repo api call method with hook and swr | Armand Philippot | 2022-01-24 | 1 | -22/+19 |
| | | | | | | | | | | | 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 | 5 | -41/+40 |
| | | | | | | I change the name in graphql endpoint, so I decided to repercute this change here. | ||||
| * | chore: include projects inside breadcrumb | Armand Philippot | 2022-01-20 | 1 | -1/+22 |
| | | |||||
| * | chore: add a project summary component | Armand Philippot | 2022-01-20 | 2 | -0/+195 |
| | | |||||
| * | chore: add projects to main nav | Armand Philippot | 2022-01-20 | 6 | -10/+120 |
| | | | | | | | 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 | 2 | -3/+3 |
| | | |||||
| * | chore: add a page for projects | Armand Philippot | 2022-01-20 | 4 | -0/+188 |
| | | |||||
| * | 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 | 1 | -0/+8 |
| | | |||||
| * | refactor(config): move defaultLocale as property of config.locales | Armand Philippot | 2022-01-19 | 2 | -2/+2 |
| | | | | | | 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 | 5 | -62/+226 |
| | | | | | 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 | 2 | -0/+37 |
| | | | | | | Some users may not know the reduced motion settings, so I provide an option directly on the website to disable animations. | ||||
| * | 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 | 18 | -41/+91 |
| | | |||||
| * | 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 | 27 | -110/+95 |
| | | |||||
| * | chore: add a spinner when content is loading | Armand Philippot | 2022-01-16 | 6 | -34/+119 |
| | | |||||
| * | chore(meta): add a link to comments on single post pages | Armand Philippot | 2022-01-16 | 1 | -1/+8 |
| | | |||||
