Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions client/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,10 @@ body {
}
body {
@apply bg-background text-foreground;
background-image: url('https://images.pexels.com/photos/2387793/pexels-photo-2387793.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); /* Replace with your image URL */
background-size: cover; /* Makes sure the image covers the entire background */
background-position: center; /* Centers the image */
background-repeat: no-repeat; /* Prevents the image from repeating */
min-height: 100vh; /* Ensures the body takes up the full viewport height */
}
}
13 changes: 10 additions & 3 deletions client/src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export default function Navbar() {
<div className="flex flex-col w-full">
<div className="bg-black text-white py-2">
<div className="max-w-7xl mx-auto">
<h1 className="text-2xl px-4">Greenline</h1>
<h1 className="text-2xl px-4 italic">
<span className="text-green-400">green</span>line
</h1>
</div>
</div>

Expand All @@ -25,20 +27,25 @@ export default function Navbar() {

<NavigationMenuItem className="group">
<NavigationMenuTrigger className="flex items-center space-x-2 hover:bg-zinc-800 text-sm font-semibold py-2 px-4 group-hover:bg-zinc-800">
<span>Markets</span>
<span>Glossary</span>
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-label="Chevron Down" role="img"><title>Chevron Down</title><path d="M11.9954 15.0785L19.5387 7.54001L21 9.00226L11.9945 18.002L3 9.00179L4.46225 7.54047L11.9954 15.0785Z" fill="currentColor"></path></svg>
</NavigationMenuTrigger>



<NavigationMenuContent>
<NavigationMenuLink>Link</NavigationMenuLink>
</NavigationMenuContent>
</NavigationMenuItem>

<NavigationMenuItem className="group">
<NavigationMenuTrigger className="flex items-center space-x-2 hover:bg-zinc-800 text-sm font-semibold py-2 px-4 group-hover:bg-zinc-800">
<span>Markets</span>
<span>Resources</span>
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-label="Chevron Down" role="img"><title>Chevron Down</title><path d="M11.9954 15.0785L19.5387 7.54001L21 9.00226L11.9945 18.002L3 9.00179L4.46225 7.54047L11.9954 15.0785Z" fill="currentColor"></path></svg>
</NavigationMenuTrigger>



<NavigationMenuContent>
<NavigationMenuLink>Link</NavigationMenuLink>
</NavigationMenuContent>
Expand Down