Skip to content

Commit

Permalink
added about page
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasMadrecha committed Feb 19, 2021
1 parent b073757 commit 3bb0026
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
9 changes: 9 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: About
slugurl: about
description:
---

A Place to learn Marwari / Marwadi and improve your vocabulary of Marwari Words.

If you already know better, then join us to help others learn.
26 changes: 26 additions & 0 deletions pages/about.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<template>
<div>
<h1
class="tw-text-3xl tw-text-center tw-bg-blue-50 tw-text-pink-900 tw-p-3"
>
About Marwari Dictionary
</h1>
<NuxtContent :document="page"></NuxtContent>
</div>
</template>

<script>
export default {
data() {
return {
page: null,
};
},
async fetch() {
this.page = await this.$content("about").fetch();
},
};
</script>

<style lang="postcss" scoped>
</style>

0 comments on commit 3bb0026

Please sign in to comment.