diff --git a/app/blog/page.tsx b/app/blog/page.tsx index 970b9b5..7a4dc30 100644 --- a/app/blog/page.tsx +++ b/app/blog/page.tsx @@ -25,7 +25,7 @@ const BlogPage = async (): Promise => { return (
-

+

Blog

diff --git a/app/error.tsx b/app/error.tsx index caa3643..ae26055 100644 --- a/app/error.tsx +++ b/app/error.tsx @@ -18,7 +18,7 @@ const ErrorHandling = (props: ErrorHandlingProps): JSX.Element => {

Error{" "} 500 diff --git a/app/globals.css b/app/globals.css index 0bc2cb3..b5ba6b8 100644 --- a/app/globals.css +++ b/app/globals.css @@ -29,7 +29,7 @@ .prose a, .prose strong { - @apply !font-semibold text-yellow dark:text-yellow-dark; + @apply !font-semibold text-primary dark:text-primary-dark; } strong, diff --git a/app/not-found.tsx b/app/not-found.tsx index 552f010..eb00c49 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -10,7 +10,7 @@ const NotFound = (): JSX.Element => {

{i18n.translate("errors.error")}{" "} 404 @@ -20,7 +20,7 @@ const NotFound = (): JSX.Element => { {i18n.translate("errors.not-found")}{" "} {i18n.translate("errors.return-to-home-page")} diff --git a/blog/BlogPost.tsx b/blog/BlogPost.tsx index c4715db..d629e62 100644 --- a/blog/BlogPost.tsx +++ b/blog/BlogPost.tsx @@ -21,7 +21,7 @@ export const BlogPost = async (props: BlogPostProps): Promise => { return (
-

+

{blogPost.frontmatter.title}

diff --git a/blog/BlogPosts.tsx b/blog/BlogPosts.tsx index e4a8b6a..47847ac 100644 --- a/blog/BlogPosts.tsx +++ b/blog/BlogPosts.tsx @@ -25,7 +25,7 @@ export const BlogPosts = async (): Promise => {

{post.frontmatter.title}

diff --git a/components/Footer/FooterText.tsx b/components/Footer/FooterText.tsx index 511273c..f012d7a 100644 --- a/components/Footer/FooterText.tsx +++ b/components/Footer/FooterText.tsx @@ -9,7 +9,7 @@ export const FooterText = (): JSX.Element => {

Théo LUDWIG {" "} diff --git a/components/Footer/FooterVersion.tsx b/components/Footer/FooterVersion.tsx index 53541f3..b2276e4 100644 --- a/components/Footer/FooterVersion.tsx +++ b/components/Footer/FooterVersion.tsx @@ -16,7 +16,7 @@ export const FooterVersion = (props: FooterVersionProps): JSX.Element => { Version{" "} { alt="Théo LUDWIG" priority /> - + Théo LUDWIG

@@ -33,7 +33,7 @@ export const Header = (): JSX.Element => { Blog diff --git a/components/Interests/InterestParagraph.tsx b/components/Interests/InterestParagraph.tsx index 5cc0830..b60b6a2 100644 --- a/components/Interests/InterestParagraph.tsx +++ b/components/Interests/InterestParagraph.tsx @@ -22,7 +22,7 @@ export const InterestParagraph = ( return ( <>

- + {title}
diff --git a/components/Interests/InterestsList/InterestItem.tsx b/components/Interests/InterestsList/InterestItem.tsx index 09a9789..6174047 100644 --- a/components/Interests/InterestsList/InterestItem.tsx +++ b/components/Interests/InterestsList/InterestItem.tsx @@ -12,7 +12,7 @@ export const InterestItem = (props: InterestItemProps): JSX.Element => { return (

  • diff --git a/components/OpenSource/Repository.tsx b/components/OpenSource/Repository.tsx index b282b9b..aed7816 100644 --- a/components/OpenSource/Repository.tsx +++ b/components/OpenSource/Repository.tsx @@ -15,7 +15,7 @@ export const Repository = (props: RepositoryProps): JSX.Element => {
    - + {name}
    diff --git a/components/Portfolio/PortfolioItem.tsx b/components/Portfolio/PortfolioItem.tsx index d1fbceb..2da7cbc 100644 --- a/components/Portfolio/PortfolioItem.tsx +++ b/components/Portfolio/PortfolioItem.tsx @@ -32,7 +32,7 @@ export const PortfolioItem = (props: PortfolioItemProps): JSX.Element => { />

    -

    +

    {title}

    {description}

    diff --git a/components/Profile/ProfileDescriptionBottom.tsx b/components/Profile/ProfileDescriptionBottom.tsx index 41d39fb..4dcf3bc 100644 --- a/components/Profile/ProfileDescriptionBottom.tsx +++ b/components/Profile/ProfileDescriptionBottom.tsx @@ -12,7 +12,7 @@ export const ProfileDescriptionBottom = (): JSX.Element => {
    Curriculum vitæ ({i18n.translate("common.fr-FR")}) diff --git a/components/Profile/ProfileInfo.tsx b/components/Profile/ProfileInfo.tsx index 7bd4cff..97e90d7 100644 --- a/components/Profile/ProfileInfo.tsx +++ b/components/Profile/ProfileInfo.tsx @@ -5,7 +5,7 @@ export const ProfileInformation = (): JSX.Element => { return (
    -

    +

    Théo LUDWIG

    diff --git a/components/Skills/Skill.tsx b/components/Skills/Skill.tsx index 1637923..dd4b9e5 100644 --- a/components/Skills/Skill.tsx +++ b/components/Skills/Skill.tsx @@ -29,7 +29,7 @@ export const SkillComponent = (props: SkillComponentProps): JSX.Element => { return ( diff --git a/components/Skills/SkillsSection.tsx b/components/Skills/SkillsSection.tsx index a78ccd9..6773ade 100644 --- a/components/Skills/SkillsSection.tsx +++ b/components/Skills/SkillsSection.tsx @@ -14,7 +14,7 @@ export const SkillsSection = (props: SkillsSectionProps): JSX.Element => {
    -

    +

    {title}

    diff --git a/components/design/Loader.tsx b/components/design/Loader.tsx index cc04e6c..896f804 100644 --- a/components/design/Loader.tsx +++ b/components/design/Loader.tsx @@ -16,7 +16,7 @@ export const Loader = (props: LoaderProps): JSX.Element => { height, }} className={classNames( - "inline-block animate-spin rounded-full border-[3px] border-current border-t-transparent text-yellow dark:text-yellow-dark", + "inline-block animate-spin rounded-full border-[3px] border-current border-t-transparent text-primary dark:text-primary-dark", className, )} role="status" diff --git a/components/design/Section/SectionHeading.tsx b/components/design/Section/SectionHeading.tsx index 4952623..1dc5fc8 100644 --- a/components/design/Section/SectionHeading.tsx +++ b/components/design/Section/SectionHeading.tsx @@ -6,7 +6,7 @@ export const SectionHeading = (props: SectionHeadingProps): JSX.Element => { return (

    {children}

    diff --git a/i18n/translations/en-US/home.json b/i18n/translations/en-US/home.json index 1e80269..73390e7 100644 --- a/i18n/translations/en-US/home.json +++ b/i18n/translations/en-US/home.json @@ -18,7 +18,7 @@ }, { "title": "Open-Source Enthusiast", - "description": "I value the sharing of knowledge and collaboration to collectively resolve problems.
    The source code of the website is available on
    GitHub.", + "description": "I value the sharing of knowledge and collaboration to collectively resolve problems.
    The source code of the website is available on GitHub.", "id": "open-source" } ] diff --git a/i18n/translations/fr-FR/home.json b/i18n/translations/fr-FR/home.json index eec23e1..2fc9550 100644 --- a/i18n/translations/fr-FR/home.json +++ b/i18n/translations/fr-FR/home.json @@ -18,7 +18,7 @@ }, { "title": "Enthousiaste de l'Open-Source", - "description": "J'apprécie le partage des connaissances et la collaboration pour résoudre des défis collectivement.
    Le code source du site est accessible sur GitHub.", + "description": "J'apprécie le partage des connaissances et la collaboration pour résoudre des défis collectivement.
    Le code source du site est accessible sur GitHub.", "id": "open-source" } ] diff --git a/tailwind.config.js b/tailwind.config.js index 70a1d6b..b4856e2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -14,7 +14,7 @@ const tailwindConfig = { DEFAULT: "#333333", dark: "#b7c0c9", }, - yellow: { + primary: { DEFAULT: "#006cff", dark: "#00aeff", },