feat: restructure mobile template for better layout and user guidance; remove unused emoji converter from home component

This commit is contained in:
吳元皓 2025-05-12 19:07:04 +08:00
parent ed42dde9ba
commit 71aac20c36
2 changed files with 6 additions and 4 deletions

View File

@ -1 +1,6 @@
<template>目前沒有手機版本</template> <template>
<div class="justify-center align-center text-center">
<span class="text-6xl text-bold">目前沒有手機版本</span>
<span class="text-xl">請使用電腦版</span>
</div>
</template>

View File

@ -1,5 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import EmojiConvertor from "emoji-js";
import { gsap } from "gsap"; import { gsap } from "gsap";
import { TextPlugin } from "gsap/TextPlugin"; import { TextPlugin } from "gsap/TextPlugin";
gsap.registerPlugin(TextPlugin); gsap.registerPlugin(TextPlugin);
@ -16,8 +15,6 @@ const messages = [
"BlindSpec", "BlindSpec",
]; ];
const emoji = new EmojiConvertor();
onMounted(() => { onMounted(() => {
const tl = gsap.timeline({ repeat: -1 }); const tl = gsap.timeline({ repeat: -1 });
messages.forEach((message) => { messages.forEach((message) => {