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

Blog

+

+ Blog +

{description}

diff --git a/app/favicon.ico b/app/favicon.ico new file mode 100644 index 0000000..1f2cec5 Binary files /dev/null and b/app/favicon.ico differ diff --git a/app/globals.css b/app/globals.css index 54b8596..24a6636 100644 --- a/app/globals.css +++ b/app/globals.css @@ -29,7 +29,7 @@ .prose a, .prose strong { - @apply text-yellow dark:text-yellow-dark; + @apply text-yellow dark:text-yellow-dark font-semibold; } strong, diff --git a/app/layout.tsx b/app/layout.tsx index 2e47120..e124336 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -13,7 +13,7 @@ import { getTheme } from "@/theme/theme.server" const title = "Théo LUDWIG" const description = "Théo LUDWIG - Developer Full Stack • Open-Source Enthusiast" -const image = "/images/icon-96x96.png" +const image = "/images/logo.png" const url = new URL("https://theoludwig.fr") const locale = "fr-FR, en-US" @@ -36,9 +36,6 @@ export const metadata: Metadata = { locale, type: "website", }, - icons: { - icon: "/images/icon-96x96.png", - }, twitter: { card: "summary", title, diff --git a/blog/BlogPost.tsx b/blog/BlogPost.tsx index 4cd637c..c4715db 100644 --- a/blog/BlogPost.tsx +++ b/blog/BlogPost.tsx @@ -21,7 +21,9 @@ export const BlogPost = async (props: BlogPostProps): Promise => { return (
-

{blogPost.frontmatter.title}

+

+ {blogPost.frontmatter.title} +

{date.format( new Date(blogPost.frontmatter.publishedOn), diff --git a/blog/BlogPosts.tsx b/blog/BlogPosts.tsx index 2f86179..e4a8b6a 100644 --- a/blog/BlogPosts.tsx +++ b/blog/BlogPosts.tsx @@ -23,7 +23,10 @@ export const BlogPosts = async (): Promise => { data-cy={post.slug} > -

+

{post.frontmatter.title}

diff --git a/components/Footer/FooterText.tsx b/components/Footer/FooterText.tsx index b58649e..555bd68 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 4ff8b9c..648fd71 100644 --- a/components/Footer/FooterVersion.tsx +++ b/components/Footer/FooterVersion.tsx @@ -16,7 +16,7 @@ export const FooterVersion = (props: FooterVersionProps): JSX.Element => { Version{" "} {

@@ -33,7 +33,7 @@ export const Header = (): JSX.Element => { Blog diff --git a/components/OpenSource/Repository.tsx b/components/OpenSource/Repository.tsx index 8fb7cfd..edb3c4f 100644 --- a/components/OpenSource/Repository.tsx +++ b/components/OpenSource/Repository.tsx @@ -15,7 +15,9 @@ export const Repository = (props: RepositoryProps): JSX.Element => {
- {name} + + {name} +

{description}

diff --git a/components/Portfolio/PortfolioItem.tsx b/components/Portfolio/PortfolioItem.tsx index b392b80..3b4f533 100644 --- a/components/Portfolio/PortfolioItem.tsx +++ b/components/Portfolio/PortfolioItem.tsx @@ -32,10 +32,10 @@ export const PortfolioItem = (props: PortfolioItemProps): JSX.Element => { />
-

+

{title}

-

{description}

+

{description}

diff --git a/components/Profile/ProfileDescriptionBottom.tsx b/components/Profile/ProfileDescriptionBottom.tsx index a06892f..e8b63df 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/Skills/Skill.tsx b/components/Skills/Skill.tsx index 5e1e16f..55dd33e 100644 --- a/components/Skills/Skill.tsx +++ b/components/Skills/Skill.tsx @@ -42,7 +42,7 @@ export const SkillComponent = (props: SkillComponentProps): JSX.Element => { alt={skill} src={getImage()} /> -

{skill}

+

{skill}

) diff --git a/components/design/Section/SectionHeading.tsx b/components/design/Section/SectionHeading.tsx index 136300c..4952623 100644 --- a/components/design/Section/SectionHeading.tsx +++ b/components/design/Section/SectionHeading.tsx @@ -4,7 +4,10 @@ export const SectionHeading = (props: SectionHeadingProps): JSX.Element => { const { children, ...rest } = props return ( -

+

{children}

) diff --git a/curriculum-vitae/curriculum-vitae.jsonc b/curriculum-vitae/curriculum-vitae.jsonc index c40969b..276e10e 100644 --- a/curriculum-vitae/curriculum-vitae.jsonc +++ b/curriculum-vitae/curriculum-vitae.jsonc @@ -3,7 +3,7 @@ "basics": { "name": "Théo LUDWIG", "label": "Développeur Full Stack • Étudiant", - "image": "https://theoludwig.fr/images/logo_orange.png", + "image": "https://theoludwig.fr/images/logo_background.png", "email": "contact@theoludwig.fr", "age": "31/03/2003", "location": { diff --git a/i18n/translations/en-US/home.json b/i18n/translations/en-US/home.json index 23df3a1..165a6f6 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 4b6d21d..5c92650 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/public/images/brand_logo.png b/public/images/brand_logo.png deleted file mode 100644 index 5ed7e95..0000000 Binary files a/public/images/brand_logo.png and /dev/null differ diff --git a/public/images/icon-96x96.png b/public/images/icon-96x96.png deleted file mode 100644 index bd78242..0000000 Binary files a/public/images/icon-96x96.png and /dev/null differ diff --git a/public/images/icon_small.png b/public/images/icon_small.png deleted file mode 100644 index 8848e1c..0000000 Binary files a/public/images/icon_small.png and /dev/null differ diff --git a/public/images/logo.png b/public/images/logo.png index c3d4fd1..50bed6a 100644 Binary files a/public/images/logo.png and b/public/images/logo.png differ diff --git a/public/images/logo_background.png b/public/images/logo_background.png new file mode 100644 index 0000000..eb2f18b Binary files /dev/null and b/public/images/logo_background.png differ diff --git a/public/images/logo_orange.png b/public/images/logo_orange.png deleted file mode 100644 index 04adfd2..0000000 Binary files a/public/images/logo_orange.png and /dev/null differ diff --git a/tailwind.config.js b/tailwind.config.js index 11bc526..e9a8cee 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -15,16 +15,16 @@ const tailwindConfig = { black: "#181818", gray: { DEFAULT: "#333333", - dark: "#b2bac2", + dark: "#b7c0c9", }, yellow: { - DEFAULT: "#ff6000", - dark: "#ffd800", + DEFAULT: "#006cff", + dark: "#00aeff", }, }, boxShadow: { - dark: "0px 0px 4px 4px rgba(0, 0, 0, 0.25)", - light: "0px 0px 4px 4px rgba(0, 0, 0, 0.10)", + dark: "0px 0px 2px 2px rgba(0, 0, 0, 0.25)", + light: "0px 0px 2px 2px rgba(0, 0, 0, 0.10)", darkFlag: "0px 1px 10px hsla(0, 0%, 100%, 0.2)", lightFlag: "0px 1px 10px rgba(0, 0, 0, 0.25)", },