-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
28fe510
commit 42e3c07
Showing
7 changed files
with
205 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<PageLayout> | ||
<!-- Inertia page head --> | ||
<Head :title="$t('regional_rules_title')" /> | ||
<div class="w-full mx-auto space-y-9 lg:max-w-7xl p-9"> | ||
<h1 class="text-6xl font-bold text-cyan-900">{{ content?.title }}</h1> | ||
<h2 class="text-lg font-semibold text-gray-700">{{ content?.subtitle }}</h2> | ||
<div v-html="content?.body"></div> | ||
</div> | ||
</PageLayout> | ||
</template> | ||
|
||
<script setup> | ||
/** Import from inertia. */ | ||
import { Head } from '@inertiajs/vue3'; | ||
|
||
/** Import components. */ | ||
import PageLayout from '@/Layouts/PageLayout.vue'; | ||
|
||
const props = defineProps({ | ||
content: Object | ||
}) | ||
</script> |
Oops, something went wrong.