1
0
Fork 0

feat(fs.dev): Added OG intro for description

This commit is contained in:
Joost De Cock 2021-12-28 20:01:59 +01:00
parent d71a8246ac
commit b59c5036ed
8 changed files with 51 additions and 150 deletions

View file

@ -108,13 +108,15 @@ const DefaultLayout = ({ app, title=false, children=[]}) => {
<PrimaryNavigation app={app} active={slug}/>
</aside>
<section className='max-w-61.8% lg:pt-8 p-4 w-full'>
{title && (
<>
<Breadcrumbs app={app} slug={slug} title={title} />
<PageTitle app={app} slug={slug} title={title} />
</>
)}
{children}
<div className="max-w-5xl">
{title && (
<>
<Breadcrumbs app={app} slug={slug} title={title} />
<PageTitle app={app} slug={slug} title={title} />
</>
)}
{children}
</div>
</section>
</main>
<Footer app={app} />