setup tailwind & content

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2023-01-05 23:33:01 +06:00
parent e8b02f2414
commit 4214719ee4
16 changed files with 2001 additions and 52 deletions

5
pages/blogs/[blog].vue Normal file
View File

@@ -0,0 +1,5 @@
<template>
<div>
<ContentDoc/>
</div>
</template>

5
pages/blogs/index.vue Normal file
View File

@@ -0,0 +1,5 @@
<template>
<div>
There will be all blogs
</div>
</template>

View File

@@ -0,0 +1,5 @@
<template>
<div>
{{ $route.params }}
</div>
</template>

View File

@@ -0,0 +1,3 @@
<template>
<div>All categories will be here</div>
</template>

22
pages/index.vue Normal file
View File

@@ -0,0 +1,22 @@
<script lang="ts" setup>
useHead({
title: "Home",
meta: [
{
name: "description",
content: "Home",
},
],
titleTemplate: "Elon's Blog - %s",
});
</script>
<template>
<main>
<h1>This ia main section</h1>
</main>
</template>