bijlobke/src/pages/prijzen.astro
xeovalyte bd02b5b108
All checks were successful
Build and Deploy / Deploy (push) Successful in 39s
Update src/pages/prijzen.astro
2024-10-26 14:56:29 +02:00

88 lines
2.4 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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>