mirror of
https://github.com/mmahdium/portfolio.git
synced 2026-08-17 05:24:30 +03:30
- Update section spacing from mb-6 to mb-8 for better visual separation - Enhance heading styles with text-blue-700, increased padding (pb-1.5), and letter-spacing - Improve typography hierarchy by changing font-semibold to font-bold for titles - Increase spacing between list items and skill categories for better readability - Add font-medium styling to dates and institution names for improved emphasis - Enhance bullet point styling with explicit color and font-weight in experience highlights - Reorganize ResumeHeader contact section with improved link styling and layout - Promote Portfolio website link with bold styling and blue color for better visibility - Adjust print-specific spacing to maintain consistency across screen and print layouts - Update resume data with refined content structure - Archive outdated resume content technical specification document
40 lines
1.3 KiB
Vue
40 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { Language, Certification } from '~/types/resume'
|
|
|
|
interface Props {
|
|
languages?: Language[]
|
|
certifications?: Certification[]
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<section class="mb-8 print:mb-5">
|
|
<h2
|
|
class="text-base font-bold text-blue-700 uppercase border-b-2 border-blue-600 pb-1.5 mb-4 print:mb-2.5 tracking-wide">
|
|
Languages & Certifications
|
|
</h2>
|
|
|
|
<!-- Languages -->
|
|
<div v-if="languages?.length" class="mb-3">
|
|
<span class="text-sm font-bold text-gray-900">Languages: </span>
|
|
<span class="text-sm text-gray-700">
|
|
<template v-for="(lang, idx) in languages" :key="lang.language">
|
|
{{ lang.language }} ({{ lang.fluency }})<template v-if="idx < languages.length - 1">, </template>
|
|
</template>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Certifications -->
|
|
<div v-if="certifications?.length">
|
|
<span class="text-sm font-bold text-gray-900">Certifications: </span>
|
|
<span class="text-sm text-gray-700">
|
|
<template v-for="(cert, idx) in certifications" :key="cert.name">
|
|
{{ cert.issuer }} - {{ cert.summary }}<template v-if="idx < certifications.length - 1">, </template>
|
|
</template>
|
|
</span>
|
|
</div>
|
|
</section>
|
|
</template>
|