-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4118db9
commit 5060d19
Showing
9 changed files
with
39 additions
and
1,719 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
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,29 @@ | ||
<script lang="ts" setup> | ||
defineOptions({ | ||
inheritAttrs: false, | ||
}); | ||
defineProps({ | ||
title: { | ||
type: String, | ||
required: true, | ||
}, | ||
description: { | ||
type: String, | ||
required: true, | ||
}, | ||
}); | ||
</script> | ||
|
||
<template> | ||
<div class="flex h-full w-full flex-col justify-center bg-slate-900 p-8 text-center"> | ||
<div class="relative"> | ||
<h1 class="mb-4 text-8xl text-white"> | ||
{{ title }} | ||
</h1> | ||
<p class="text-5xl leading-tight text-gray-200"> | ||
{{ description }} | ||
</p> | ||
</div> | ||
</div> | ||
</template> |
Oops, something went wrong.