New position prop to Header
This commit is contained in:
@ -1,15 +1,27 @@
|
||||
---
|
||||
import Layout from '~/layouts/PageLayout.astro';
|
||||
|
||||
import Header from '~/components/widgets/Header.astro';
|
||||
import Hero from '~/components/widgets/Hero.astro';
|
||||
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||
|
||||
import { headerData } from '~/data';
|
||||
|
||||
const meta = {
|
||||
title: "Startup Landing Page",
|
||||
};
|
||||
---
|
||||
|
||||
<Layout {meta}>
|
||||
<Fragment slot="header">
|
||||
<Header
|
||||
{...headerData}
|
||||
showRssFeed
|
||||
showToggleTheme
|
||||
position="left"
|
||||
/>
|
||||
</Fragment>
|
||||
|
||||
<!-- Hero2 Widget ******************* -->
|
||||
|
||||
<Hero
|
||||
|
Reference in New Issue
Block a user