resize lg

This commit is contained in:
sasha-astiadi 2025-07-09 16:29:49 +02:00
parent 0d6e823fbf
commit 2461196f15
3 changed files with 10 additions and 12 deletions

View File

@ -89,21 +89,19 @@ export function Header() {
<nav className="relative z-50 flex justify-between">
<div className="flex items-center md:gap-x-12">
<Link href="#" aria-label="Home">
<Logo className="h-10 w-auto" />
<Logo className="h-6 w-auto lg:h-6 md:h-8" />
</Link>
<div className="hidden md:flex md:gap-x-6">
<NavLink href="#features">Features</NavLink>
<NavLink href="#testimonials">Testimonials</NavLink>
<NavLink href="#pricing">Pricing</NavLink>
<NavLink href="/about">About</NavLink>
<NavLink href="/ventures">Ventures</NavLink>
<NavLink href="/people">People</NavLink>
<NavLink href="/news">News</NavLink>
</div>
</div>
<div className="flex items-center gap-x-5 md:gap-x-8">
<div className="hidden md:block">
<NavLink href="/login">Sign in</NavLink>
</div>
<Button href="/register" color="blue">
<Button href="/contact" color="black">
<span>
Get started <span className="hidden lg:inline">today</span>
Contact Us
</span>
</Button>
<div className="-mr-1 md:hidden">

View File

@ -2,8 +2,8 @@ export function Logo(props: React.ComponentPropsWithoutRef<'svg'>) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="176"
height="45"
width="132"
height="32"
version="1.2"
viewBox="0 0 132 33.75"
>

View File

@ -10,7 +10,7 @@ export function NavLink({
return (
<Link
href={href}
className="inline-block rounded-lg px-2 py-1 text-sm text-slate-700 hover:bg-slate-100 hover:text-slate-900"
className="inline-block rounded-lg px-2 py-1 text-base text-slate-700 hover:bg-slate-100 hover:text-slate-900"
>
{children}
</Link>