Done
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-07-04 23:09:00 +10:00
parent 0485b85a59
commit 439139a057
50 changed files with 2405 additions and 548 deletions
+14 -5
View File
@@ -1,4 +1,6 @@
<script setup lang="ts">
import { Link } from '@inertiajs/vue3';
defineProps<{
light?: boolean;
small?: boolean;
@@ -6,14 +8,21 @@ defineProps<{
</script>
<template>
<span :class="['masthead', small && 'masthead-sm', light && 'masthead-light', !light && 'masthead-dark']">
Dredge<span class="masthead-accent">News</span>
</span>
<Link style="text-decoration: none;" :href="route('home')">
<span
:class="[
'masthead',
small && 'masthead-sm',
light && 'masthead-light',
!light && 'masthead-dark',
]"
>
Dredge<span class="masthead-accent">News</span>
</span>
</Link>
</template>
<style scoped lang="sass">
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap')
.masthead
font-family: 'Playfair Display', serif
font-weight: 700