Compare commits
14 Commits
f4be672de7
...
main
Author | SHA1 | Date | |
---|---|---|---|
ffd829bdb0 | |||
4b3ccb6bcd
|
|||
b0f52e1dd6
|
|||
615fa42ab4
|
|||
e3e41eaf8a
|
|||
dfcf835dce
|
|||
55f2e7175f
|
|||
c658cf9f1a
|
|||
3ae6d2b319
|
|||
06c82cb2b4
|
|||
bd02b5b108 | |||
f72972d7b7
|
|||
8fd4497485
|
|||
b8e12b9948
|
@@ -28,3 +28,6 @@ jobs:
|
||||
|
||||
- run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/bijlobke:latest --load --platform=linux/amd64 .
|
||||
- run: docker push gitea.xeovalyte.dev/xeovalyte/bijlobke:latest
|
||||
|
||||
- run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/bijlobke:latest-arm --load --platform=linux/arm64 .
|
||||
- run: docker push gitea.xeovalyte.dev/xeovalyte/bijlobke:latest-arm
|
||||
|
41
.github/workflows/actions.yaml
vendored
41
.github/workflows/actions.yaml
vendored
@@ -1,41 +0,0 @@
|
||||
name: GitHub Actions
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version:
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js v${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
# - run: npm test
|
||||
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js 22
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run check
|
@@ -74,7 +74,7 @@ const {
|
||||
<div
|
||||
class="intersect-once intercept-no-queue intersect-quarter motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade flex justify-center"
|
||||
>
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d613.1422525811341!2d4.675828277548104!3d52.06147025524555!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5d0e3f7fe9653%3A0x96c053935b9909a3!2sElzenbroek%204%2C%202811%20NX%20Reeuwijk!5e0!3m2!1sen!2snl!4v1729865646290!5m2!1sen!2snl" width="1000" height="600" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||
<iframe src="https://maps.google.com/maps?width=100%25&height=600&hl=en&q=52.06117424045515,%204.675962695335814+(Bij%20Lobke)&t=&z=17&ie=UTF8&iwloc=B&output=embed" width="1000" height="600" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
site:
|
||||
name: Bij Lobke!
|
||||
site: 'https://astrowind.vercel.app'
|
||||
site: 'https://bijlobke.eu'
|
||||
base: '/'
|
||||
trailingSlash: false
|
||||
|
||||
|
@@ -18,7 +18,7 @@ const metadata: MetaData = {
|
||||
|
||||
<Layout metadata={metadata}>
|
||||
<section class="px-4 py-16 sm:px-6 mx-auto lg:px-8 lg:py-20 max-w-4xl">
|
||||
<h1 class="font-bold font-heading text-4xl md:text-5xl leading-tighter tracking-tighter">{frontmatter.title}</h1>
|
||||
<h1 class="font-bold font-heading text-3xl md:text-5xl leading-tighter tracking-tighter">{frontmatter.title}</h1>
|
||||
<div
|
||||
class="mx-auto prose prose-lg max-w-4xl dark:prose-invert dark:prose-headings:text-slate-300 prose-md prose-headings:font-heading prose-headings:leading-tighter prose-headings:tracking-tighter prose-headings:font-bold prose-a:text-blue-600 dark:prose-a:text-blue-400 prose-img:rounded-md prose-img:shadow-lg mt-8"
|
||||
>
|
||||
|
@@ -48,12 +48,12 @@ const metadata = {
|
||||
items={[
|
||||
{
|
||||
title: 'Phone',
|
||||
description: '+1 (234) 567-890',
|
||||
description: '+31 6 19338199',
|
||||
icon: 'tabler:headset',
|
||||
},
|
||||
{
|
||||
title: 'Email',
|
||||
description: 'contact@support.com',
|
||||
description: '<a href="mailto:annelies.harkes@gmail.com">annelies.harkes@gmail.com<a>',
|
||||
icon: 'tabler:mail',
|
||||
},
|
||||
{
|
||||
|
@@ -13,6 +13,8 @@ import FAQs from '~/components/widgets/FAQs.astro';
|
||||
import Stats from '~/components/widgets/Stats.astro';
|
||||
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||
|
||||
import { getPermalink } from '../utils/permalinks';
|
||||
|
||||
const metadata = {
|
||||
title: 'Bij Lobke',
|
||||
ignoreTitleTemplate: true,
|
||||
@@ -30,8 +32,7 @@ const metadata = {
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Offerte aanvragen',
|
||||
href: 'https://github.com/onwidget/astrowind',
|
||||
target: '_blank',
|
||||
href: getPermalink('/contact'),
|
||||
},
|
||||
{ text: 'Lees verder', href: '#features' },
|
||||
]}
|
||||
@@ -89,7 +90,7 @@ const metadata = {
|
||||
items={[
|
||||
{
|
||||
title: 'Terras',
|
||||
description: 'Buiten hebben we een overdekt terras met tafel en stoelen, met uitkijk waar over het weiland en de tuin. Echt een plek waar je helemaal weg bent<br><br>Het overdekte terras is 40m<sup>2</sup>',
|
||||
description: 'Buiten hebben we een overdekt terras met tafel en stoelen, met uitkijk over het weiland en de tuin. Echt een plek waar je helemaal weg bent<br><br>Het overdekte terras is 40m<sup>2</sup>',
|
||||
},
|
||||
]}
|
||||
image={{
|
||||
|
@@ -33,9 +33,8 @@ const metadata = {
|
||||
price: "€ 200",
|
||||
period: 'per dagdeel',
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Offerte aanvragen',
|
||||
href: '#',
|
||||
href: '/contact',
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -44,9 +43,8 @@ const metadata = {
|
||||
price: "€ 400",
|
||||
period: 'per dag',
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Offerte aanvragen',
|
||||
href: '#',
|
||||
href: '/contact',
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -55,9 +53,8 @@ const metadata = {
|
||||
price: "Op aanvraag",
|
||||
period: ' ',
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Offerte aanvragen',
|
||||
href: '#',
|
||||
href: '/contact',
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
Reference in New Issue
Block a user