Skip to content

Commit

Permalink
feat(web): add new navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocroh committed Jun 10, 2024
1 parent a5e8eda commit 8c9cffb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}

.dark {
--background: 0 0% 0%;
--background: 240 67% 2%;
--foreground: 210 40% 98%;

--card: 222.2 84% 4.9%;
Expand Down
28 changes: 19 additions & 9 deletions apps/web/components/header.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<nav className="container z-10 flex items-start justify-between p-5">
<Link href="/">
<Image
src="/full-logo.png"
width={101}
height={42}
alt="BolhaDEV.chat logo featuring a stylized globe and a speech bubble with a language symbol on a dark background."
></Image>
</Link>
<nav className="w-full border-b border-b-zinc-800 py-6">
<div className="container flex items-start justify-between">
<Link href="/">
<Image
src="/full-logo.png"
width={173}
height={72}
alt="BolhaDEV.chat logo featuring a stylized globe and a speech bubble with a language symbol on a dark background."
></Image>
</Link>
<Link href="room/queue" className="self-center">
<Button className="rounded-xl p-6 text-zinc-800">
<span className="mr-1 text-base leading-6">Get started</span>
<ArrowRight />
</Button>
</Link>
</div>
</nav>
)
}

0 comments on commit 8c9cffb

Please sign in to comment.