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