feat: add logo to header
This commit is contained in:
parent
4bcd8aec0e
commit
356c0cc549
|
|
@ -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>
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue