import config from "@lib/config" import React from "react" type PageSeoProps = { title?: string description?: string isLoading?: boolean isPrivate?: boolean } const PageSeo = ({ title = "Drift", description = "A self-hostable clone of GitHub Gist", isPrivate = false }: PageSeoProps) => { return ( <> Drift{title ? ` - ${title}` : ""} {!isPrivate && } {isPrivate && } {/* TODO: verify the correct meta tags */} ) } export default PageSeo const ThemeAndIcons = () => ( <> ) const URLs = () => ( <> {/* TODO: OG image */} )