diff options
Diffstat (limited to 'pages')
-rwxr-xr-x | pages/about.vue | 14 | ||||
-rwxr-xr-x | pages/blog/[article].vue | 6 | ||||
-rwxr-xr-x | pages/blog/index.vue | 6 | ||||
-rwxr-xr-x | pages/index.vue | 52 | ||||
-rwxr-xr-x | pages/projects.vue | 6 |
5 files changed, 84 insertions, 0 deletions
diff --git a/pages/about.vue b/pages/about.vue new file mode 100755 index 0000000..559d67e --- /dev/null +++ b/pages/about.vue @@ -0,0 +1,14 @@ +<template> + <v-container> + <v-row> + <v-col cols="6"> + <v-card :elevation="4"> + <v-card-title>About Me</v-card-title> + <v-divider></v-divider> + <v-card-text>Freach, An Anarchist Hacker</v-card-text> + </v-card> + </v-col> + </v-row> + </v-container> +</template> +<style lang="sass" scoped></style> diff --git a/pages/blog/[article].vue b/pages/blog/[article].vue new file mode 100755 index 0000000..423f431 --- /dev/null +++ b/pages/blog/[article].vue @@ -0,0 +1,6 @@ +<template>
+ <v-container>
+ <h1>Article details</h1>
+ </v-container>
+</template>
+<style lang="sass" scoped></style>
diff --git a/pages/blog/index.vue b/pages/blog/index.vue new file mode 100755 index 0000000..1f9e3f7 --- /dev/null +++ b/pages/blog/index.vue @@ -0,0 +1,6 @@ +<template>
+ <v-container>
+ <h1>Blog</h1>
+ </v-container>
+</template>
+<style lang="sass" scoped></style>
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> diff --git a/pages/projects.vue b/pages/projects.vue new file mode 100755 index 0000000..f4b43d5 --- /dev/null +++ b/pages/projects.vue @@ -0,0 +1,6 @@ +<template>
+ <v-container>
+ <h1>Projects</h1>
+ </v-container>
+</template>
+<style lang="sass" scoped></style>
|