Reorganice navigation and add first landing pages

This commit is contained in:
prototypa
2023-08-14 09:25:16 -04:00
parent 1eeee6ce2b
commit 85fa2050f8
11 changed files with 289 additions and 84 deletions

View File

@ -0,0 +1,36 @@
---
import PageLayout from '~/layouts/PageLayout.astro';
import Header from '~/components/widgets/Header.astro';
import { headerData } from '~/navigation';
import { MetaData } from '~/types';
export interface Props {
metadata?: MetaData;
}
const { metadata } = Astro.props;
---
<PageLayout metadata={metadata}>
<Fragment slot="announcement">
<slot name="announcement" />
</Fragment>
<Fragment slot="header">
<slot name="header">
<Header
links={headerData?.links[2] ? [headerData.links[2]] : undefined}
actions={[
{
type: 'ghost',
text: 'Download',
href: 'https://github.com/onwidget/astrowind'
},
]}
showToggleTheme
position="right"
/>
</slot>
</Fragment>
<slot />
</PageLayout>