mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-18 15:27:52 +00:00
remove roundness
This commit is contained in:
@@ -4,13 +4,13 @@ import Link from "next/link";
|
||||
import { useCallback, useEffect, useId, useRef, useState } from "react";
|
||||
|
||||
const primaryNav = [
|
||||
{ label: "Notícias", href: "#" },
|
||||
{ label: "Europa", href: "#" },
|
||||
{ label: "Mundo", href: "#" },
|
||||
{ label: "Famosos", href: "#" },
|
||||
{ label: "Música", href: "#" },
|
||||
{ label: "Em Foco", href: "#" },
|
||||
{ label: "Lifestyle", href: "#" },
|
||||
{ label: "Desporto", href: "#" },
|
||||
{ label: "Economia", href: "#" },
|
||||
{ label: "Cultura", href: "#" },
|
||||
{ label: "Ciência", href: "#" },
|
||||
{ label: "Galaria", href: "#" },
|
||||
{ label: "Contactos", href: "#" },
|
||||
];
|
||||
|
||||
const secondaryNav = [
|
||||
@@ -143,12 +143,12 @@ export function TvoneSiteNav() {
|
||||
<span className="text-xl font-bold tracking-tight sm:text-2xl">tvone</span>
|
||||
</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) => (
|
||||
<li key={item.label}>
|
||||
<Link
|
||||
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}
|
||||
</Link>
|
||||
|
||||
Reference in New Issue
Block a user