eddyencode/deepsitev3
1
1import Deepseek from "./../../assets/deepseek-color.svg";2 3function Tabs({ children }: { children?: React.ReactNode }) {4 return (5 <div className="border-b border-gray-800 pl-4 lg:pl-7 pr-3 flex items-center justify-between">6 <div7 className="8 space-x-6"9 >10 <button className="rounded-md text-sm cursor-pointer transition-all duration-100 font-medium relative py-2.5 text-white">11 index.html12 <span className="absolute bottom-0 left-0 h-0.5 w-full transition-all duration-100 bg-white" />13 </button>14 </div>15 <div className="flex items-center justify-end gap-3">16 <a17 href="https://huggingface.co/deepseek-ai/DeepSeek-V3-0324"18 target="_blank"19 className="text-[12px] text-gray-300 hover:brightness-120 flex items-center gap-1 font-code"20 >21 Powered by <img src={Deepseek} className="size-5" /> Deepseek22 </a>23 {children}24 </div>25 </div>26 );27}28 29export default Tabs;30 