remove roundness

This commit is contained in:
2026-03-31 18:39:01 +01:00
parent 07ac26270a
commit daa8bbac58
+8 -8
View File
@@ -4,13 +4,13 @@ import Link from "next/link";
import { useCallback, useEffect, useId, useRef, useState } from "react"; import { useCallback, useEffect, useId, useRef, useState } from "react";
const primaryNav = [ const primaryNav = [
{ label: "Notícias", href: "#" }, { label: "Famosos", href: "#" },
{ label: "Europa", href: "#" }, { label: "Música", href: "#" },
{ label: "Mundo", href: "#" }, { label: "Em Foco", href: "#" },
{ label: "Lifestyle", href: "#" },
{ label: "Desporto", href: "#" }, { label: "Desporto", href: "#" },
{ label: "Economia", href: "#" }, { label: "Galaria", href: "#" },
{ label: "Cultura", href: "#" }, { label: "Contactos", href: "#" },
{ label: "Ciência", href: "#" },
]; ];
const secondaryNav = [ const secondaryNav = [
@@ -143,12 +143,12 @@ export function TvoneSiteNav() {
<span className="text-xl font-bold tracking-tight sm:text-2xl">tvone</span> <span className="text-xl font-bold tracking-tight sm:text-2xl">tvone</span>
</Link> </Link>
<ul className="hidden min-w-0 flex-1 items-center justify-center gap-0.5 lg:flex xl:gap-1"> <ul className="hidden min-w-0 flex-1 items-center justify-center gap-4 lg:flex xl:gap-4">
{primaryNav.map((item) => ( {primaryNav.map((item) => (
<li key={item.label}> <li key={item.label}>
<Link <Link
href={item.href} href={item.href}
className="block whitespace-nowrap rounded-md px-2 py-2.5 text-[13px] font-semibold uppercase tracking-wide text-white/95 transition hover:bg-white/10 xl:px-2.5 xl:text-[14px]" className="block whitespace-nowrap rounded-md px-2 py-2.5 text-[10px] font-semibold uppercase tracking-wide text-white/95 transition hover:bg-white/10 xl:px-2.5 xl:text-[14px]"
> >
{item.label} {item.label}
</Link> </Link>