File size: 461 Bytes
0e7e985
 
7b92dc3
0e7e985
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Image from "next/image";

import HuggingFaceLogo from "@/assets/hf-logo.svg";

export const Header = () => {
  return (
    <nav className="py-4 w-full flex items-center justify-between gap-4">
      <Image
        src={HuggingFaceLogo}
        alt="Hugging Face Logo"
        width={50}
        height={50}
      />
      <p className="text-xl text-white font-bold lowercase tracking-wider">
        What hair color is it?
      </p>
    </nav>
  );
};