haditha_ui/components/haditha/HadithaFooter.vue
2025-05-17 07:32:27 +03:30

46 lines
1013 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts"></script>
<template>
<footer class="haditha-footer fixedsd">
<UContainer
class="flex justify-between max-w-[var(--ui-container-two)] py-4 lg:px-4"
>
<p class="description">
© تمام حقوق اين وبسايت نیز برای مؤسسه هوش مصنوعی و تمدن اسلامی (همتا)
است.
</p>
<p class="description">طراحی شده توسط <span class="designer"> استودیو نیوا </span></p>
</UContainer>
</footer>
</template>
<style lang="scss" scoped>
.haditha-footer {
// position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #1B2132;
.description {
font-weight: 300;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #ffffff;
.designer {
font-weight: 300;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #3fc8fa;
}
}
}
</style>