From d16937fc0c918fc6a3f83f69be0ffbdf37e1f0f2 Mon Sep 17 00:00:00 2001 From: Antoine Giret Date: Sun, 10 Mar 2024 23:09:50 +0100 Subject: [PATCH] feat: add github link in footer --- src/layout/index.tsx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/layout/index.tsx b/src/layout/index.tsx index b8622f0..7bedd64 100644 --- a/src/layout/index.tsx +++ b/src/layout/index.tsx @@ -1,6 +1,7 @@ -import { Box, Text } from '@chakra-ui/react'; +import { Box, Icon, Link, Text } from '@chakra-ui/react'; import { WrapPageElementBrowserArgs } from 'gatsby'; import React from 'react'; +import { IoLogoGithub } from 'react-icons/io5'; function Layout({ element }: WrapPageElementBrowserArgs): JSX.Element { return ( @@ -29,14 +30,26 @@ function Layout({ element }: WrapPageElementBrowserArgs): JSX.Element { - - © Antoine Giret 2024 + © Antoine Giret 2024 + | + + Créé avec{' '} + + Gatsby + + | + + + );