18 lines
550 B
Vue
18 lines
550 B
Vue
<template>
|
|
<div class="container mx-auto">
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 items-center">
|
|
<div class="px-6">
|
|
<h1 class="text-black dark:text-zinc-300 font-semibold leading-tight text-4xl md:text-5xl my-5">
|
|
Categories
|
|
</h1>
|
|
<p class="dark:text-zinc-300">
|
|
Blow this category is generated from all the tags are mentioned in the different blog post
|
|
</p>
|
|
</div>
|
|
<div class="px-6 justify-self-center">
|
|
<LogoDogs />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|