88 lines
2.4 KiB
Plaintext
88 lines
2.4 KiB
Plaintext
---
|
||
import Layout from '~/layouts/PageLayout.astro';
|
||
|
||
import Hero from '~/components/widgets/Hero2.astro';
|
||
import Note from '~/components/widgets/Note.astro';
|
||
import Features from '~/components/widgets/Features.astro';
|
||
import Features2 from '~/components/widgets/Features2.astro';
|
||
import Features3 from '~/components/widgets/Features3.astro';
|
||
import Steps from '~/components/widgets/Steps.astro';
|
||
import Content from '~/components/widgets/Content.astro';
|
||
import BlogLatestPosts from '~/components/widgets/BlogLatestPosts.astro';
|
||
import FAQs from '~/components/widgets/FAQs.astro';
|
||
import Stats from '~/components/widgets/Stats.astro';
|
||
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||
import Prices from '~/components/widgets/Pricing.astro';
|
||
|
||
const metadata = {
|
||
title: 'Bij Lobke',
|
||
ignoreTitleTemplate: true,
|
||
};
|
||
---
|
||
|
||
<Layout metadata={metadata}>
|
||
|
||
<!-- Content Widget **************** -->
|
||
<Prices
|
||
title="Onze prijzen"
|
||
subtitle=""
|
||
prices={[
|
||
{
|
||
title: 'Dagdeel',
|
||
subtitle: "09:00-13:00 of 13:00-17:00<sup>**</sup>",
|
||
price: "€ 200",
|
||
period: 'per dagdeel',
|
||
callToAction: {
|
||
text: 'Offerte aanvragen',
|
||
href: '/contact',
|
||
},
|
||
},
|
||
{
|
||
title: 'Hele dag',
|
||
subtitle: ' ',
|
||
price: "€ 400",
|
||
period: 'per dag',
|
||
callToAction: {
|
||
text: 'Offerte aanvragen',
|
||
href: '/contact',
|
||
},
|
||
},
|
||
{
|
||
title: 'Anders',
|
||
subtitle: ' ',
|
||
price: "Op aanvraag",
|
||
period: ' ',
|
||
callToAction: {
|
||
text: 'Offerte aanvragen',
|
||
href: '/contact',
|
||
},
|
||
},
|
||
]}
|
||
|
||
/>
|
||
<Features3
|
||
title="Inbegrepen"
|
||
subtitle=""
|
||
columns={2}
|
||
items={[
|
||
{
|
||
title: 'Locatie',
|
||
description: 'De locatie is 42m<sup>2</sup> en is sfeervol ingerichte ruimte; het overdekte terras is 40m<sup>2<sup>',
|
||
},
|
||
{
|
||
title: 'Faciliteiten',
|
||
description: 'Smart tv, snelle wifi en whiteboard/ flipover is aanwezig; mocht je iets anders nodig hebben, is dit op aanvraag mogelijk. De ruimte is voorzien van eigen sanitair.',
|
||
},
|
||
{
|
||
title: 'Eten & Drinken',
|
||
description: 'koffie, thee, fris en wat lekkers bij de koffie.',
|
||
},
|
||
{
|
||
title: 'Capaciteit',
|
||
description: 'We hebben plek tot max. 15 personen.',
|
||
},
|
||
]}
|
||
classes={{ container: 'max-w-5xl' }}
|
||
/>
|
||
</Layout>
|