added profile title

This commit is contained in:
Mamalizz
2025-02-08 23:48:52 +03:30
parent f76f325ef3
commit ed0cf9bf78
@@ -0,0 +1,23 @@
<script setup lang="ts">
// types
type Props = {
title: string;
};
// props
defineProps<Props>();
</script>
<template>
<div
class="flex items-center w-full lg:py-4 lg:border-b px-5 border-slate-200"
>
<p class="font-semibold lg:text-lg text-black">
{{ title }}
</p>
</div>
</template>
<style scoped></style>