-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathTopNav.tsx
103 lines (99 loc) · 3.33 KB
/
TopNav.tsx
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React from "react";
import Link from "next/link";
import Image from "next/image";
import { GithubIcon, HeartIcon } from "lucide-react";
import HamburgerMenu from "./HamburgerMenu";
import { Button, Text } from "@/components/ui";
import { navConfig } from "@/config/navigation";
export default function TopNav() {
return (
<>
<nav className="fixed top-0 left-0 right-0 w-full border-b-2 border-black bg-white">
<div className="w-full bg-black text-white">
<div className="container max-w-6xl mx-auto px-4 py-2 flex justify-between md:justify-center space-x-4 items-center">
<Text className="text-sm text-center">
Introducing{" "}
<a
href="https://dub.sh/retroui-pro"
target="_blank"
className="underline font-bold"
>
RetroUI Pro.
</a>
<span className="hidden md:block">
Ship faster with premium blocks, templates, figma ui-kit and
more!
</span>
</Text>
<a href="https://dub.sh/retroui-pro" target="_blank">
<Button
size="sm"
className="shadow-none font-sans font-bold px-2 py-1"
>
Learn More
</Button>
</a>
</div>
</div>
<div className="container max-w-6xl px-4 lg:px-0 mx-auto">
<div className="flex justify-between items-center h-16">
{/* Logo Section */}
<div className="shrink-0">
<a
href="/"
className="text-black font-head text-2xl flex items-end"
>
<Image
src="/images/logo_full.png"
alt="retro ui logo"
className="mr-2"
height={30}
width={60}
/>
RetroUI
</a>
</div>
{/* Navigation Links */}
<div className="hidden md:flex space-x-6">
{navConfig.topNavItems.map((item) => (
<Link
key={item.title}
href={item.href}
className="hover:underline decoration-primary underline-offset-2 transition-all"
>
{item.title}
</Link>
))}
</div>
<div className="flex items-center space-x-4 lg:hidden">
<Link
href="https://github.com/Logging-Stuff/retroui"
target="_blank"
rel="noopener noreferrer"
>
<GithubIcon />
</Link>
<HamburgerMenu />
</div>
<div className="hidden lg:flex items-center">
<Link
href="https://github.com/Logging-Stuff/retroui"
target="_blank"
rel="noopener noreferrer"
>
<Button
className="flex items-center"
variant="outline"
size="sm"
>
<GithubIcon size="16" className="mr-2" />
Star on GitHub
</Button>
</Link>
</div>
</div>
</div>
</nav>
</>
);
}