1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

feat: new logo v1

This commit is contained in:
2024-01-28 01:56:47 +01:00
parent 1523c8cac0
commit b8ceefb2f6
24 changed files with 38 additions and 29 deletions

View File

@ -2,6 +2,7 @@ import { cookies } from "next/headers"
import Link from "next/link"
import Image from "next/image"
import Logo from "@/public/images/logo.png"
import { getI18n } from "@/i18n/i18n.server"
import { Locales } from "./Locales"
@ -17,13 +18,12 @@ export const Header = (): JSX.Element => {
<div className="flex items-center justify-center">
<Image
quality={100}
width={60}
height={60}
src="/images/icon_small.png"
className="w-16 h-16"
src={Logo}
alt="Théo LUDWIG"
priority
/>
<strong className="ml-1 hidden font-headline font-semibold text-yellow dark:text-yellow-dark xs:block">
<strong className="ml-1 hidden font-headline font-semibold text-yellow dark:text-yellow-dark xs:block sm:text-xl">
Théo LUDWIG
</strong>
</div>
@ -33,7 +33,7 @@ export const Header = (): JSX.Element => {
<Link
href="/blog"
data-cy="header-blog-link"
className="text-yellow hover:underline dark:text-yellow-dark"
className="font-semibold text-yellow hover:underline dark:text-yellow-dark"
>
Blog
</Link>