From 8c9cffb017d65e8fe936fa1f59cf0938ebacf899 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Sun, 9 Jun 2024 21:30:55 +0100 Subject: [PATCH] feat(web): add new navbar --- apps/web/app/globals.css | 2 +- apps/web/components/header.tsx | 28 +++++++++++++++++++--------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/apps/web/app/globals.css b/apps/web/app/globals.css index 79cd381..ffa561b 100644 --- a/apps/web/app/globals.css +++ b/apps/web/app/globals.css @@ -36,7 +36,7 @@ } .dark { - --background: 0 0% 0%; + --background: 240 67% 2%; --foreground: 210 40% 98%; --card: 222.2 84% 4.9%; diff --git a/apps/web/components/header.tsx b/apps/web/components/header.tsx index e7d0cac..fdba2ca 100644 --- a/apps/web/components/header.tsx +++ b/apps/web/components/header.tsx @@ -1,18 +1,28 @@ import React from 'react' import Image from 'next/image' import Link from 'next/link' +import { ArrowRight } from 'lucide-react' +import { Button } from '@/components/ui/button' export const Header = () => { return ( -