Write on the margins of the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
at main 16 lines 381 B view raw
1--- 2import BaseLayout from './BaseLayout.astro'; 3import App from '../App'; 4 5interface Props { 6 title?: string; 7 description?: string; 8 image?: string; 9} 10 11const { title = 'Margin', description = 'Annotate the web', image = 'https://margin.at/og.png' } = Astro.props; 12--- 13 14<BaseLayout title={title} description={description} image={image}> 15 <App client:only="react" /> 16</BaseLayout>