import Image from "next/image"
import LogoWhite from "../public/gallery-logo-dark.svg"
import LogoBlack from "../public/gallery-logo-light.svg"
const width = 200
const height = 100
const viewBox = `0 0 ${width} ${height}`
const Light = () => (
)
const Dark = () => (
)
const Logo = ({ dark }: { dark?: boolean }) => {
const logo_size = 150;
return (
)
}
export default Logo