- Add .gitea/workflows/ci.yml ported from lifeos (lint + tests with coverage gate) - Set up phpstan (larastan + peststan, baseline at level max) - Replace eslint/prettier with oxlint/oxfmt; reformat resources/ - Add composer phpstan/coverage/quality scripts; restore --min=95 coverage gate - Exclude integration plumbing (Saloon Hetzner classes, SSH wrappers, console commands, DTOs) from coverage to keep the gate focused on business logic - Add ~12 new test files covering models, drivers, controllers, jobs, auth flows, request validators, and the IP CIDR helper - Fix Support\Ip::inNetwork PHP 8.4 TypeError in CIDR mask check - Fix FirewallRule::command comparing the enum-cast type column to a string - Fix Server::network using the wrong foreign key column - Remove unreachable code under abort(403) in RegisteredUserController
45 lines
1.7 KiB
Vue
45 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import AppLogoIcon from "@/components/AppLogoIcon.vue";
|
|
import { Link, usePage } from "@inertiajs/vue3";
|
|
|
|
const page = usePage();
|
|
const name = page.props.name;
|
|
const quote = page.props.quote;
|
|
|
|
defineProps<{
|
|
title?: string;
|
|
description?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="relative grid h-dvh flex-col items-center justify-center px-8 sm:px-0 lg:max-w-none lg:grid-cols-2 lg:px-0"
|
|
>
|
|
<div class="relative hidden h-full flex-col bg-muted p-10 text-white dark:border-r lg:flex">
|
|
<div class="absolute inset-0 bg-zinc-900" />
|
|
<Link :href="route('home')" class="relative z-20 flex items-center text-lg font-medium">
|
|
<AppLogoIcon class="mr-2 size-8 fill-current text-white" />
|
|
{{ name }}
|
|
</Link>
|
|
<div v-if="quote" class="relative z-20 mt-auto">
|
|
<blockquote class="space-y-2">
|
|
<p class="text-lg">“{{ quote.message }}”</p>
|
|
<footer class="text-sm text-neutral-300">{{ quote.author }}</footer>
|
|
</blockquote>
|
|
</div>
|
|
</div>
|
|
<div class="lg:p-8">
|
|
<div class="mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]">
|
|
<div class="flex flex-col space-y-2 text-center">
|
|
<h1 class="text-xl font-medium tracking-tight" v-if="title">{{ title }}</h1>
|
|
<p class="text-sm text-muted-foreground" v-if="description">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|