-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |