Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ const structuredData = computed(() => [
"name": "活動頻度はどのくらいですか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "主に2つの定期活動があります。2週間ごとの技術交流会・会議と、1週間ごとの競技プログラミング参加です。ただし、必須の活動はなく、興味のある活動に自由に参加できます。"
"text": "主に2つの定期活動があります。1ヶ月ごとの技術交流会・会議と、1週間ごとの競技プログラミング参加です。ただし、必須の活動はなく、興味のある活動に自由に参加できます。"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion components/BodyDesigner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ html {
}
}
}
</style>
</style>
2 changes: 1 addition & 1 deletion components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<h1>各種リンク</h1>
<ul>
<li><a target="_blank" href="https://github.com/AppLii">AppLii|GitHubリポジトリ</a></li>
<li><a target="_blank" href="https://twitter.com/applii_crea">AppLii|Twitter(X)アカウント</a></li>
<li><a target="_blank" href="https://twitter.com/applii_crea">AppLii|X(旧Twitter)アカウント</a></li>
<li><a target="_blank" href="https://www.instagram.com/applii.crea">AppLii|Instagramアカウント</a> </li>
<li><a target="_blank" href="https://www.wakayama-u.ac.jp/">和歌山大学|ホームページ</a></li>
<li><a target="_blank" href="https://www.wakayama-u.ac.jp/crea/index.html">和歌山大学|学生自主創造支援部門(クリエ)</a></li>
Expand Down
71 changes: 26 additions & 45 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions pages/about-cafe-app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<h2>開発背景</h2>
<p>
大学食堂の混雑は、学生にとって深刻な問題です。混雑していると、食事の時間が長くかかったり、次の授業に間に合わなかったりする可能性があります。また、新型コロナウイルス感染拡大防止の観点からも、混雑を避けることは重要です。
大学食堂の混雑は、学生にとって深刻な問題です。混雑していると、食事の時間が長くかかったり、次の授業に間に合わなかったりする可能性があります。
</p>
<p>
私たちは、この問題を解決するために、大学食堂の混雑状況をスマホで確認できるアプリを開発しました。このアプリを使えば、学生は混雑状況を事前に確認して、混雑していない時間帯に食堂に行くことができます。
Expand All @@ -29,7 +29,7 @@

<SectionComponent>
<h2>リリース予定</h2>
<p>未定です。現在データの計測を始め、混雑状況の推定・予測モデルの構築に取り組んでおります。</p>
<p>現在、データの計測および混雑状況の推定・予測モデルの改良を行っております。正式なリリース時期は未定です。</p>
</SectionComponent>

<SectionComponent>
Expand Down Expand Up @@ -73,11 +73,11 @@ export default {

<script setup>
useHead({
title: '食堂混雑アプリ(仮)について|AppLii',
title: 'どうこむについて|AppLii',
meta: [
{ name: 'description', content: '食堂混雑アプリ(仮)についてご紹介します。' },
{ property: 'og:title', content: '食堂混雑アプリ(仮)|AppLii' },
{ property: 'og:description', content: '食堂混雑アプリ(仮)についてご紹介します' },
{ name: 'description', content: 'どうこむについてご紹介します。' },
{ property: 'og:title', content: 'どうこむについて|AppLii' },
{ property: 'og:description', content: 'どうこむについてご紹介します' },
],
})
</script>
2 changes: 1 addition & 1 deletion pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<td><a target="_blank" href="https://github.com/AppLii">@AppLii</a></td>
</tr>
<tr>
<th>X(Twitter)</th>
<th>X(旧Twitter)</th>
<td><a target="_blank" href="https://twitter.com/applii_crea">@applii_crea</a></td>
</tr>
<tr>
Expand Down
6 changes: 6 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@
</td>
</tr>
-->
<tr>
<th>2026-02-07</th>
<td>
<a href="/newcomers/2026">2026年度新入生歓迎会に関する情報</a>を準備中です。詳細は2026年4月頃に公開予定です。
</td>
</tr>
<tr>
<th>2025-04-01</th>
<td>
Expand Down
32 changes: 32 additions & 0 deletions pages/newcomers/2026.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<template>
<TopTitle title="加入方法" />
<SectionComponent>
<h1>2026年度の新歓ページ</h1>
<p>詳細な情報は2026年4月以降に公開します。</p>
<p>しばらくお待ちください。</p>
</SectionComponent>
</template>

<script>
import SectionComponent from '~/components/SectionComponent.vue';
import TopTitle from '~/components/TopTitle.vue';

export default {
name: 'NewcomersPage',
components: {
SectionComponent,
TopTitle,
},
}
</script>

<script setup>
useHead({
title: '2026年度の新歓ページ|AppLii',
meta: [
{ name: 'description', content: '2026年度の新歓についてご紹介します。' },
{ property: 'og:title', content: '2026年度の新歓ページ|AppLii' },
{ property: 'og:description', content: '2026年度の新歓についてご紹介します。' },
],
})
</script>
7 changes: 4 additions & 3 deletions pages/newcomers/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<TopTitle title="加入方法" />
<SectionComponent>
<h2>今年度の加入方法について</h2>
<p>※ 今年度の新歓は、2025年5月31日(土)に終了いたしました。</p>
<p>※ これ以降の加入申請は個別対応となります。お問い合わせからご連絡ください。</p>
<a class="newcomers-event-button" href="/newcomers/2025">2025年度の新歓ページ</a>
<p>※ 2026年度の新歓情報は、2026年4月頃に公開予定です。</p>
<p>※ 現在は準備中です。しばらくお待ちください。</p>
<a class="newcomers-event-button" href="/newcomers/2026">2026年度の新歓ページ(準備中)</a>
<p>今年度の加入方法・新歓に関する情報は上記ページからご確認ください!</p>
</SectionComponent>

Expand All @@ -31,6 +31,7 @@
<h2>過去の新歓情報</h2>
<p>各年の新歓情報を見ることができます。</p>
<ul>
<li> <a href="/newcomers/2025">2025年度の新歓ページ</a> </li>
<li> <a href="/newcomers/2024">2024年度の新歓ページ</a> </li>
</ul>
</SectionComponent>
Expand Down