mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-16 03:31:46 +01:00
Add BSc degree
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<div class="border border-gray-500 dark:border-gray-300 rounded-md p-3 mx-auto w-full lg:w-2/3 xl:w-1/2">
|
||||
<h3 class="text-2xl font-semibold text-center text-gray-900 dark:text-white">{{ props.title }}</h3>
|
||||
<h4 v-if="props.subtitle" class="text font-semibold text-center text-gray-700 dark:text-gray-300">{{ props.subtitle }}</h4>
|
||||
<div class="text-center mb-2">
|
||||
<a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a>
|
||||
</div>
|
||||
@ -17,6 +18,7 @@
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
subtitle: { type: String, required: false },
|
||||
links: Object as PropType<{ label: string, url: string }[]>,
|
||||
image: String
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user