summaryrefslogtreecommitdiff
path: root/pages/index.vue
diff options
context:
space:
mode:
Diffstat (limited to 'pages/index.vue')
-rwxr-xr-xpages/index.vue52
1 files changed, 52 insertions, 0 deletions
diff --git a/pages/index.vue b/pages/index.vue
new file mode 100755
index 0000000..186e3f7
--- /dev/null
+++ b/pages/index.vue
@@ -0,0 +1,52 @@
+<template>
+ <v-container>
+ <v-row>
+ <v-col>
+ <h1 class="text-center text-primary mb-3">
+ Welcome to my site
+ </h1>
+ <h2 class="text-center text-primary mb-3">- Freach -</h2>
+ <h2 class="text-center text-primary mb-3">
+ Its under building
+ </h2>
+ <h2 class="text-center text-primary mb-3">
+ code is here <a href="https://git.frcsm.de/freach/www-frc/">here</a>
+ </h2>
+ </v-col>
+ </v-row>
+ <v-row>
+ <v-col class="d-flex justify-center">
+ <v-btn
+ icon
+ size="small"
+ href="mailto:freach@freach.ltd"
+ class="mr-5"
+ >
+ <!-- SVG -->
+ <!-- color: color hex code -->
+ <!-- scale: the size of the the image (massured in scale) default value: 0.5 -->
+ <!-- offsetX: the offset value in x-axis (Unit: rem 1rem = 16px) -->
+ <!-- offsetY: the offset value in y-axis -->
+ <email color="#388E3C" offsetY="-0.4"></email>
+ </v-btn>
+ <v-btn
+ icon
+ size="small"
+ class="mr-5"
+ href="mailto:@jiderlesi@chaos.social"
+ >
+ <mastodon color="#388E3C" offsetY="-0.4"></mastodon>
+ </v-btn>
+ <v-btn
+ icon
+ size="small"
+ href="https://kolektiva.media/a/jiderlesi"
+ >
+ <peertube color="#388E3C" offsetY="-0.4"></peertube>
+ </v-btn>
+ </v-col>
+ </v-row>
+ </v-container>
+</template>
+
+<script setup lang="ts"></script>