import config from "@lib/config" import React from "react" type PageSeoProps = { title?: string description?: string isLoading?: boolean isPrivate?: boolean } const PageSeo = ({ title: pageTitle, description = "A self-hostable clone of GitHub Gist", isPrivate = false }: PageSeoProps) => { const title = `Drift${pageTitle ? ` - ${pageTitle}` : ""}` return ( <>