File size: 1,038 Bytes
67ea2ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e65b868
67ea2ab
e65b868
67ea2ab
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import Image from "next/image";

import Arrow from "@/assets/svg/arrow.svg";
import Logo from "@/assets/logo.png";

export const Navigation = () => {
  return (
    <div className="rounded-full bg-zinc-950 border border-white/10 px-6 py-4 flex items-center justify-between max-w-xl w-full mx-auto shadow-md relative">
      <div className="flex items-center justify-center gap-3 relative">
        <div className="relative">
          <Image src={Logo} alt="logo" className="size-6" />
          <div className="absolute left-0 -translate-x-[calc(100%+12px)] top-5 text-white flex justify-end gap-1 -rotate-6">
            <p className="font-mono text-sm text-white">AI Generated</p>
            <Image
              src={Arrow}
              alt="arrow"
              className="w-[30px] absolute -right-3 -top-1"
            />
          </div>
        </div>
        <p className="font-semibold text-lg text-white">LogoAI</p>
      </div>
      <ul className="flex items-center justify-right gap-3 text-white"></ul>
    </div>
  );
};