content component

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2022-12-13 01:23:25 +06:00
parent a1367ac6b9
commit 40d3ed08bc
5 changed files with 60 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
<template>
<div class="text-3xl font-poppins antialiased font-semibold text-slate-800">
<slot />
</div>
</template>

View File

@@ -0,0 +1,8 @@
<template>
<div
class="text-xs font-poppins antialiased text-slate-600 flex justify-between p-3"
>
<slot name="time" />
<slot name="author" />
</div>
</template>

View File

@@ -1,6 +1,34 @@
--- ---
title: sdlfkjs Title: This is a title
des: sdfsdflkj type: javascript
time: 22-12-2022
Author: riyad
--- ---
# hello js ::header-component
# This is a header. Lets lear how to install component in nuxt 3 part 1
::
::info-component
#time
22 January 2022
#author
by Md. Al Asad Nur Riyad
::
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
[google](google.com)
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

9
layouts/blog.vue Normal file
View File

@@ -0,0 +1,9 @@
<template>
<div class="bg-slate-200">
<navbar-com />
<div class="container mx-auto max-w-6xl font-poppins antialiased">
<slot />
</div>
<footer-com />
</div>
</template>

View File

@@ -1,5 +1,11 @@
<script setup lang="ts">
definePageMeta({
layout: "blog",
});
</script>
<template> <template>
<main> <main class="p-5 bg-white">
<ContentDoc /> <ContentDoc />
</main> </main>
</template> </template>