mirror of
https://github.com/kevin-DL/InertiaJS-Vue3-Tailwind-CSS-AdonisJS.git
synced 2026-01-11 19:04:27 +00:00
first commit
This commit is contained in:
22
resources/js/Pages/About/About.vue
Normal file
22
resources/js/Pages/About/About.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<layout
|
||||
><div class="space-y-2 text-center">
|
||||
<h1 class="font-bold text-transparent text-9xl bg-gradient-to-r bg-clip-text from-purple-400 via-green-400 to-purple-600">About US</h1>
|
||||
<h2 class="text-3xl font-semibold">{{ Text }} 🖖</h2>
|
||||
</div>
|
||||
</layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Layout from "../../Shared/Layout.vue";
|
||||
|
||||
export default {
|
||||
props: ["Text"],
|
||||
components: {
|
||||
layout: Layout,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user