Skip to content

Commit

Permalink
Update contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
chihchy committed Jun 14, 2023
1 parent abbbc66 commit 2c393ff
Show file tree
Hide file tree
Showing 5 changed files with 2,432 additions and 2,226 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ on:
- main
jobs:
Deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '17'
- name: Install dependencies
run: yarn install
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --skip-plugins @vue/cli-plugin-eslint",
"build": "vue-cli-service build --skip-plugins @vue/cli-plugin-eslint",
"serve": "NODE_OPTIONS='--openssl-legacy-provider' vue-cli-service serve --skip-plugins @vue/cli-plugin-eslint",
"build": "NODE_OPTIONS='--openssl-legacy-provider' vue-cli-service build --skip-plugins @vue/cli-plugin-eslint",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\""
},
Expand All @@ -13,7 +13,7 @@
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^3.0.0-3",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"autoprefixer": "^9",
"core-js": "^3.6.5",
"postcss": "^7",
Expand Down
27 changes: 16 additions & 11 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<a href="https://github.com/EhPanda-Team/EhPanda">
<fa-icon :icon="['fab', 'github']" class="plain-icon" />
</a>
<a href="https://twitter.com/ehpandaapp">
<fa-icon :icon="['fab', 'twitter']" class="ml-4 plain-icon" />
</a>
<a href="https://discord.gg/BSBE9FCBTq">
<fa-icon :icon="['fab', 'discord']" class="ml-4 plain-icon" />
</a>
Expand All @@ -19,16 +22,22 @@
<h1 class="pt-8 text-5xl font-medium text-black dark:text-white">EhPanda</h1>
<h2 class="pb-10 font-light text-black dark:text-gray-300 app-desc">{{ $t("desc.app") }}</h2>
<div class="flex flex-col w-60">
<a href="https://github.com/EhPanda-Team/EhPanda" class="button-container flex-grow">
<fa-icon :icon="['fab', 'github']" class="button-icon" />
<p class="button-label">GitHub</p>
</a>
<div class="flex mt-2">
<a href="https://discord.gg/BSBE9FCBTq" class="button-container flex-grow">
<a href="https://github.com/EhPanda-Team/EhPanda" class="button-container flex-grow w-1/2">
<fa-icon :icon="['fab', 'github']" class="button-icon" />
<p class="button-label">GitHub</p>
</a>
<a href="https://twitter.com/ehpandaapp" class="ml-2 button-container flex-grow w-1/2">
<fa-icon :icon="['fab', 'twitter']" class="button-icon" />
<p class="button-label">Twitter</p>
</a>
</div>
<div class="flex mt-2">
<a href="https://discord.gg/BSBE9FCBTq" class="button-container flex-grow w-1/2">
<fa-icon :icon="['fab', 'discord']" class="button-icon" />
<p class="button-label">Discord</p>
</a>
<a href="https://t.me/ehpanda" class="ml-2 button-container flex-grow">
<a href="https://t.me/ehpanda" class="ml-2 button-container flex-grow w-1/2">
<fa-icon :icon="['fab', 'telegram']" class="button-icon" />
<p class="button-label">Telegram</p>
</a>
Expand Down Expand Up @@ -129,11 +138,7 @@
<object data="/img/swiftui.svg" type="image/svg+xml" class="w-72 h-72">swiftui</object>
</section>
<footer class="flex items-center justify-between w-screen text-xs text-white bg-gray-800 h-14">
<p class="ml-8 ">© 2023 荒木辰造. All rights reserved.</p>
<a class="hidden mr-8 md:flex" href="mailto:kendellcarol@gmail.com">
<fa-icon icon="envelope" size="md" class="mt-0.5 mr-1" />
<p>kendellcarol@gmail.com</p>
</a>
<p class="ml-8 ">© 2023 EhPanda Team. All rights reserved.</p>
</footer>
</template>

Expand Down
2 changes: 2 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { createI18n } from 'vue-i18n'
import { library } from "@fortawesome/fontawesome-svg-core"
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { faGithub } from '@fortawesome/free-brands-svg-icons/faGithub'
import { faTwitter } from '@fortawesome/free-brands-svg-icons/faTwitter'
import { faDiscord } from '@fortawesome/free-brands-svg-icons/faDiscord'
import { faTelegram } from '@fortawesome/free-brands-svg-icons/faTelegram'
import { faEnvelope } from "@fortawesome/free-solid-svg-icons/faEnvelope"
Expand Down Expand Up @@ -218,6 +219,7 @@ const i18n = createI18n({
})

library.add(faGithub)
library.add(faTwitter)
library.add(faDiscord)
library.add(faTelegram)
library.add(faEnvelope)
Expand Down
Loading

0 comments on commit 2c393ff

Please sign in to comment.