Files
Cloud-Blog/components/category/hero.vue
2024-11-09 03:18:21 +06:00

24 lines
597 B
Vue

<script setup lang="ts">
import { categoryPage } from '~/data'
</script>
<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"
>
{{ categoryPage.title }}
</h1>
<p class="dark:text-zinc-300">
{{ categoryPage.description }}
</p>
</div>
<div class="px-6 justify-self-center">
<LogoDogs />
</div>
</div>
</div>
</template>