import { AccountDialog } from "@/components/account-dialog"; import { ThemeBtnSelector } from "@/components/theme-btn-selector"; import Image from "next/image"; import type React from "react"; import Link from "next/link"; export function Header({ title, children, }: { title?: string; children?: React.ReactNode }) { return (
{"Logo

{title || "Neptune"}

{children}
); }