This commit adds the '名人堂' (Hall of Fame) feature and removes the Element Plus dependency. - feat(content): Add Hall of Fame section with a new content collection, homepage component, and detail pages. - refactor(join-us): Rewrite the 'Join Us' form to remove Element Plus, using native elements and Reka UI. The form is temporarily disabled. - feat(ui): Display cover images on News and Events cards. - chore: Integrate Umami for web analytics. - fix: Correct minor text issues, including graduation year in the footer.
16 lines
212 B
Vue
16 lines
212 B
Vue
<template>
|
|
<div>
|
|
<IndexHero />
|
|
<IndexNews />
|
|
<IndexEvents />
|
|
<IndexHallOfFame />
|
|
<IndexDonate />
|
|
<IndexAbout />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
</script>
|
|
|
|
<style></style> |