Skip to content

Commit 6630dc0

Browse files
authored
Feat: implement navbar (#269)
1 parent cf083ef commit 6630dc0

File tree

3 files changed

+4024
-3
lines changed

3 files changed

+4024
-3
lines changed

frontend/app/(marketing)/components/Navbar.tsx renamed to frontend/app/(marketing)/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function Navbar() {
88

99
return (
1010
<nav
11-
className="bg-black relative z-50"
11+
className="bg-[#000A0B] relative z-50"
1212
style={{ boxShadow: "0px 20px 25px 0px #000A0B" }}
1313
>
1414
<div className="flex justify-between items-center p-5 md:px-[50px]">

frontend/app/page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
import Navbar from "./(marketing)/components/Navbar";
21
import HeroSection from "./(marketing)/components/HeroSection";
32
import PredictionProtocol from "./(marketing)/components/PredictionProtocol";
43
import Features from "./(marketing)/components/Features";
54
import InstinctsToSignals from "./(marketing)/components/InstinctsToSignals";
65
import FAQ from "./(marketing)/components/FAQ";
76
import Footer from "./(marketing)/components/Footer";
7+
import NavBar from "./(marketing)/components/NavBar";
88

99
export default function Home() {
1010
return (
1111
<div className="text-sm min-h-screen bg-[#001112]">
1212
<main className="w-screen overflow-x-hidden">
13-
<Navbar />
13+
{/* <Navbar /> */}
14+
<NavBar />
1415
<HeroSection />
1516
<div className="relative space-y-10 lg:space-y-[150px] pt-[80px] lg:pt-[180px]">
1617
<img

0 commit comments

Comments
 (0)