Initial commit

This commit is contained in:
Florian Sylvain
2024-03-25 12:06:42 +01:00
commit 9d33539a0b
29 changed files with 9464 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
<template>
<div id="container">
<strong>{{ name }}</strong>
<p>Explore <a target="_blank" rel="noopener noreferrer" href="https://ionicframework.com/docs/components">UI Components</a></p>
</div>
</template>
<script setup lang="ts">
defineProps({
name: String,
});
</script>
<style scoped>
#container {
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%);
}
#container strong {
font-size: 20px;
line-height: 26px;
}
#container p {
font-size: 16px;
line-height: 22px;
color: #8c8c8c;
margin: 0;
}
#container a {
text-decoration: none;
}
</style>