-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
49bf5c4
commit 2f57286
Showing
3 changed files
with
47 additions
and
47 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,48 +1,48 @@ | ||
import Link from "next/link"; | ||
import {IoEarth} from "react-icons/io5"; | ||
import {siteConfig} from "@repo/config"; | ||
import { siteConfig } from "@repo/config"; | ||
import { FiTerminal } from "react-icons/fi"; | ||
|
||
import InteractiveHeaderComponents from "./index.client"; | ||
|
||
export default function Header() { | ||
return ( | ||
<header className="flex mt-5 mb-6"> | ||
<div className="container flex flex-row"> | ||
<Link href="/" className="flex items-center justify-center"> | ||
<div className="flex flex-row items-center"> | ||
<IoEarth size={30}/> | ||
<div className="font-semibold leading-3 ml-1"> | ||
{siteConfig.name.split(" ")[0]} | ||
<br/> | ||
<div className="h-1 w-1"></div> | ||
{siteConfig.name.split(" ")[1]} | ||
</div> | ||
<header className="flex mt-5 mb-6"> | ||
<div className="container flex flex-row"> | ||
<Link href="/" className="flex items-center justify-center"> | ||
<div className="flex flex-row items-center"> | ||
<FiTerminal size={30} /> | ||
<div className="font-semibold leading-3 ml-1"> | ||
{siteConfig.name.split(" ")[0]} | ||
<br /> | ||
<div className="h-1 w-1"></div> | ||
{siteConfig.name.split(" ")[1]} | ||
</div> | ||
</Link> | ||
<nav className="ml-6 hidden md:flex items-center justify-center flex-row gap-4"> | ||
<Link | ||
href="/tracks" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Tracks | ||
</Link> | ||
<Link | ||
href="/solutions" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Solutions | ||
</Link> | ||
<Link | ||
href="/pricing" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Pricing | ||
</Link> | ||
</nav> | ||
<div className="flex flex-row ml-auto"> | ||
<InteractiveHeaderComponents/> | ||
</div> | ||
</Link> | ||
<nav className="ml-6 hidden md:flex items-center justify-center flex-row gap-4"> | ||
<Link | ||
href="/tracks" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Tracks | ||
</Link> | ||
<Link | ||
href="/solutions" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Solutions | ||
</Link> | ||
<Link | ||
href="/pricing" | ||
className="font-semibold hover:text-gray-400 transition-all duration-100" | ||
> | ||
Pricing | ||
</Link> | ||
</nav> | ||
<div className="flex flex-row ml-auto"> | ||
<InteractiveHeaderComponents /> | ||
</div> | ||
</header> | ||
</div> | ||
</header> | ||
); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.