46 lines
1013 B
Vue
46 lines
1013 B
Vue
<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>
|