This commit is contained in:
2026-04-16 12:07:22 +02:00
parent cf7735d667
commit 3a79088cce
2 changed files with 6 additions and 3 deletions
+5 -2
View File
@@ -1,5 +1,6 @@
'use client'; 'use client';
import Link from 'next/link';
import React, { useState, useEffect, MouseEvent } from 'react'; import React, { useState, useEffect, MouseEvent } from 'react';
import { CiMenuFries } from "react-icons/ci"; import { CiMenuFries } from "react-icons/ci";
import { IoCloseOutline } from "react-icons/io5"; import { IoCloseOutline } from "react-icons/io5";
@@ -40,8 +41,10 @@ export default function Header() {
return ( return (
<div className="bg-brand-beige h-20 fixed left-2.75 right-2.75 z-50 rounded-b-[20px]"> <div className="bg-brand-beige h-20 fixed left-2.75 right-2.75 z-50 rounded-b-[20px]">
<header className="h-20 bg-brand-brown text-brand-beige py-6 px-10 flex justify-between items-center rounded-[10px]"> <header className="h-20 bg-brand-brown text-brand-beige py-6 px-10 flex justify-between items-center rounded-[10px]">
<div className="hidden md:block font-serif text-2xl font-light">M. Guilbert</div> <Link href="/#">
<img className="block md:hidden w-auto h-15" src="/icons/logo.svg" alt="logo mg dev" /> <div className="hidden md:block font-serif text-2xl font-light cursor-pointer">M. Guilbert</div>
<img className="block md:hidden w-auto h-15 cursor-pointer" src="/icons/logo.svg" alt="logo mg dev" />
</Link>
{/* Desktop */} {/* Desktop */}
<nav className="hidden sm:block"> <nav className="hidden sm:block">
+1 -1
View File
@@ -13,7 +13,7 @@ export function ProjectPreviewGrid({ items = [] }: props) {
{items.map((item) => ( {items.map((item) => (
<div <div
key={item.title} key={item.title}
className="rounded-[10px] overflow-hidden bg-[#2b160f] text-white min-h-65 flex items-center justify-center" className="rounded-[10px] overflow-hidden bg-brand-brown text-white min-h-65 flex items-center justify-center"
> >
{item.image ? ( {item.image ? (
<img <img