import Translatable from "./Translatable"; class Examples extends Translatable { prepare({ page }) { page.priority = 0.3; } renderProject({ title, repository }) { return ( {title} ); } renderPostExample({ title, href, description }) { return (

{title}

{description}

); } render() { if (!this.i18n) return false; return (

{this.i18n.heading}

{this.i18n.tagline}

{this.i18n.posts?.map((post) => ( ))}
); } } export default Examples;