update git commit and push

This commit is contained in:
Rami Bitar
2026-05-05 14:04:51 -04:00
parent fce386c518
commit 346fcb470e
4 changed files with 135 additions and 20 deletions

View File

@@ -7,6 +7,7 @@ import { cn } from "@/lib/utils";
export type NavigationProps = {
brand: string;
logo?: string;
links: Array<{ label: string; href: string }>;
showSearch: "yes" | "no";
showCart: "yes" | "no";
@@ -18,6 +19,7 @@ export type NavigationProps = {
export function Navigation({
brand,
logo,
links,
showSearch,
showCart,
@@ -70,10 +72,18 @@ export function Navigation({
<div className="container mx-auto flex h-16 max-w-7xl items-center justify-between px-6 md:h-20">
<Link
to="/"
className="font-semibold tracking-tight"
className="inline-flex items-center font-semibold tracking-tight"
style={{ fontSize: "1.125rem", letterSpacing: "0.02em" }}
>
{brand}
{logo ? (
<img
src={logo}
alt={brand || "Brand Logo"}
className="h-8 w-auto object-contain"
/>
) : (
brand || "Brand Logo"
)}
</Link>
<nav className="hidden items-center gap-8 md:flex">