feat: add logo to header

This commit is contained in:
Maze Winther
2025-06-22 14:28:34 +02:00
parent 4bcd8aec0e
commit 356c0cc549

View File

@ -1,14 +1,16 @@
"use client";
import Link from "next/link";
import Image from "next/image";
import { Button } from "./ui/button";
import { ArrowRight } from "lucide-react";
import { HeaderBase } from "./header-base";
export function Header() {
const leftContent = (
<Link href="/" className="font-medium tracking-tight">
AppCut
<Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="AppCut Logo" width={24} height={24} />
<span className="font-medium tracking-tight">AppCut</span>
</Link>
);