news-analyze/components/app/windows/about.vue

38 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import copyrightInfo from "~/components/app/info/copyright.vue";
// Great, there are now no errors ig
const emit = defineEmits(["windowopener", "error", "loadValue"]);
const props = defineProps<{
values?: string;
}>();
</script>
<template>
<div class="justify-center align-center text-center flex flex-col">
<div class="flex flex-col">
<span class="text-xl">為什麼要做網站</span>
<span
>1. 台灣媒體真的很爛要嘛有超多偏見或是比較偏小孩不能看的新聞 (aka
擦邊通過的</span
>
<span
>2. 這個網站是為了讓大家可以更方便的比較新聞可以分析新聞的偏見</span
>
<span>3. <span class="line-through"> TailwindCSS</span></span>
</div>
<hr />
<div class="flex flex-col">
<span class="text-xl">關於開發者</span>
<span class="text-center align-center justify-center">開發者yh</span>
<span class="text-center align-center justify-center"
>聯絡信箱<a href="mailto:public+newscompareauthor@yuanhau.com"
>public@yuanhau.com</a
></span
>
</div>
<hr />
<div class="flex flex-col">
<span class="text-xl">版權資訊</span>
<copyrightInfo class="justify-center align-center text-center" />
</div>
</div>
</template>