File size: 1,040 Bytes
664c219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
import Deepseek from "./../../assets/deepseek-color.svg";

function Tabs({ children }: { children?: React.ReactNode }) {
  return (
    <div className="border-b border-gray-800 pl-4 lg:pl-7 pr-3 flex items-center justify-between">

      <div

        className="

      space-x-6"

      >

        <button className="rounded-md text-sm cursor-pointer transition-all duration-100 font-medium relative py-2.5 text-white">

          index.html

          <span className="absolute bottom-0 left-0 h-0.5 w-full transition-all duration-100 bg-white" />

        </button>

      </div>

      <div className="flex items-center justify-end gap-3">

        <a

          href="https://huggingface.co/deepseek-ai/DeepSeek-V3-0324"

          target="_blank"

          className="text-[12px] text-gray-300 hover:brightness-120 flex items-center gap-1 font-code"

        >

          Powered by <img src={Deepseek} className="size-5" /> Deepseek

        </a>

        {children}

      </div>

    </div>
  );
}

export default Tabs;