-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b073757
commit 3bb0026
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |