minor fixes #41
2 changed files with 4 additions and 6 deletions
|
@ -9,12 +9,10 @@ export function Navbar() {
|
|||
return (
|
||||
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
||||
<div className="mx-auto container px-4 flex h-14 items-center">
|
||||
<div className="me-4 flex gap-2">
|
||||
<Link href="/" className="sm:me-6 flex items-center gap-2">
|
||||
<Image src="/parch.svg" alt="Parch Logo" width={32} height={32} />
|
||||
<Link href="/" className="me-6 flex items-center gap-2">
|
||||
<span className="hidden font-bold sm:inline-block">{t('home.title')}</span>
|
||||
</Link>
|
||||
</div>
|
||||
<span className="font-bold">{t('home.title')}</span>
|
||||
</Link>
|
||||
<nav className="hidden md:flex items-center gap-6 text-sm font-medium">
|
||||
<Link href="/features">{t('navigation.features')}</Link>
|
||||
<Link href="/download">{t('navigation.download')}</Link>
|
||||
|
|
|
@ -26,7 +26,7 @@ export default function Community() {
|
|||
placeholder={t("community.search")}
|
||||
onInput={(e) => search(e.target.value.trim().toLowerCase())} />
|
||||
</div>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6">
|
||||
{apps.map(app => (
|
||||
<Card>
|
||||
<CardHeader>
|
||||
|
|
Loading…
Add table
Reference in a new issue