Skip to content

Commit

Permalink
Added linter
Browse files Browse the repository at this point in the history
  • Loading branch information
roelofr committed Nov 21, 2023
1 parent 421c553 commit 7e8c190
Show file tree
Hide file tree
Showing 5 changed files with 980 additions and 139 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 80

[*.md]
trim_trailing_whitespace = false

[*.{js,ts,css,yml,vue}]
indent_style = space
indent_size = 2
3 changes: 3 additions & 0 deletions .github/workflows/verify-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run linter
run: npm run lint

- name: Build application
run: npm run generate

Expand Down
46 changes: 25 additions & 21 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
<template>
<div>
<a href="#content" class="sr-only">Door naar inhoud</a>
<div>
<a href="#content" class="sr-only">Door naar inhoud</a>

<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-8 pb-12 lg:pt-12 lg:pb-16">
<header class="block py-16 lg:py-24">
<img src="./public/logo.svg" alt="Gumbo Millennium" class="h-64 lg:h-[300px] mx-auto">
</header>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-8 pb-12 lg:pt-12 lg:pb-16">
<header class="block py-16 lg:py-24">
<img src="./public/logo.svg" alt="Gumbo Millennium" class="h-64 lg:h-[300px] mx-auto">
</header>

<section class="flex flex-col items-center gap-y-4" id="content">
<h1 class="font-title font-bold text-4xl text-gray-900 sm:text-5xl md:text-6xl text-center">
<span class="block">Tijdelijk buiten gebruik</span>
</h1>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl">
Deze website van Gumbo Millennium is tijdelijk buiten gebruik. We zijn druk bezig met het ontwikkelen van een nieuwe website.
</p>
<p class="text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl">
In de tussentijd, ben je van harte welkom <a href="https://www.gumbo-millennium.nl" class="text-brand-500 underline hover:text-brand-700 hover:no-underline">op onze reguliere website</a>.
</p>
</section>
</main>
</div>
<section id="content" class="flex flex-col items-center gap-y-4">
<h1 class="font-title font-bold text-4xl text-gray-900 sm:text-5xl md:text-6xl text-center">
<span class="block">Tijdelijk buiten gebruik</span>
</h1>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl">
Deze website van Gumbo Millennium is tijdelijk buiten gebruik.
We zijn druk bezig met het ontwikkelen van een nieuwe website.
</p>
<p class="text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl">
In de tussentijd, ben je van harte welkom <a
href="https://www.gumbo-millennium.nl"
class="text-brand-500 underline hover:text-brand-700 hover:no-underline"
>op onze reguliere website</a>.
</p>
</section>
</main>
</div>
</template>

<script setup lang="ts">
useHead({
title: 'Tijdelijk buiten gebruik - Gumbo Millennium',
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
],
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }
]
})
</script>
Loading

0 comments on commit 7e8c190

Please sign in to comment.