Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,23 @@ defineProps({
description: {
type: String,
required: true
},
headline: {
type: String,
default: undefined
}
})
</script>

<template>
<div class="w-full h-full flex flex-col justify-center text-center bg-slate-900 p-8">
<div class="relative">
<p
v-if="headline"
class="text-3xl text-blue-400 mb-4 uppercase tracking-widest"
>
{{ headline }}
</p>
<h1 class="text-8xl mb-4 text-white">
{{ title }}
</h1>
Expand Down
14 changes: 11 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'

export default withNuxt({
// Your custom configs here
})
export default withNuxt(
{
// Your custom configs here
},
{
files: ['**/*.md/**'],
rules: {
'@stylistic/eol-last': 'off'
}
}
)
Loading