2024-11-17 11:45:08 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
defineProps<{
|
|
|
|
title: string
|
|
|
|
icon: string[]
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-01-13 01:03:16 +08:00
|
|
|
<div class="my-16 relative">
|
|
|
|
<h3 class="text-5xl font-bold text-blue-400 relative z-10">{{ title }}</h3>
|
|
|
|
<div class="h-12 w-auto text-5xl text-blue-200 absolute left-48 top-0 -translate-y-6">
|
2024-11-17 11:45:08 +08:00
|
|
|
<font-awesome-icon :icon="icon"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-01-13 01:03:16 +08:00
|
|
|
|
2024-11-17 11:45:08 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|