File size: 2,009 Bytes
6e1a53e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"use client";

// import GitHubButton from "react-github-btn";

import Image from "next/image";
import Link from "next/link";

import { cn } from "@/lib/utils";

export function MainNav({
  className,
  ...props
}: React.HTMLAttributes<HTMLElement>) {
  return (
    <nav
      className={cn("flex items-center space-x-4 lg:space-x-6", className)}
      {...props}
    >
      <Link href="/">
        <Image
          src="https://app.embedchain.ai/logo.svg"
          alt="Logo"
          width={125}
          height={125}
        />
      </Link>
      <Link
        href="/admin"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
      >
        Admin
      </Link>
      <Link
        href="https://github.com/embedchain/embedchain"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
        target="_blank"
      >
        GitHub
      </Link>
      {/* <Link
        href="https://github.com/embedchain/embedchain"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
        target="_blank"
      >
        GitHub
      </Link>
      <Link
        href="https://github.com/embedchain/embedchain"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
        target="_blank"
      >
        GitHub
      </Link>
      <Link
        href="https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
        target="_blank"
      >
        Slack
      </Link>
      <Link
        href="https://docs.embedchain.ai"
        className="text-sm font-light text-muted-foreground transition-colors hover:text-primary hover:text-black"
        target="_blank"
      >
        Docs
      </Link> */}
    </nav>
  );
}