feat: add logo to header
This commit is contained in:
@ -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>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user