move components

This commit is contained in:
2025-05-20 20:34:50 +02:00
parent b610b30a78
commit 7e6a09563a
14 changed files with 16 additions and 27 deletions

View File

@ -1,8 +1,8 @@
---
import WebsiteLayout from '@layouts/website/WebsiteLayout.astro';
import Scroll from '@components/website/index/Scroll.svelte';
import Teams from '@app/webite/index/Teams.svelte';
import Countdown from '@components/website/index/Countdown.svelte';
import Scroll from '@app/website/index/Scroll.svelte';
import Teams from '@app/website/index/Teams.svelte';
import Countdown from '@app/website/index/Countdown.svelte';
import Varo from '@assets/img/varo.webp';
import Background from '@assets/img/background.webp';
import { START_DATE } from 'astro:env/server';

View File

@ -2,10 +2,10 @@
import WebsiteLayout from '@layouts/website/WebsiteLayout.astro';
import Checkbox from '@components/input/Checkbox.svelte';
import Input from '@components/input/Input.svelte';
import RulesPopup from '@components/website/signup/RulesPopup.svelte';
import RulesPopup from '@app/website/signup/RulesPopup.svelte';
import Popup from '@components/popup/Popup.svelte';
import TeamPopup from '@components/website/signup/TeamPopup.svelte';
import RegisteredPopup from '@components/website/signup/RegisteredPopup.svelte';
import TeamPopup from '@app/website/signup/TeamPopup.svelte';
import RegisteredPopup from '@app/website/signup/RegisteredPopup.svelte';
import { getSettings, SettingKey } from '@util/settings';
import { db } from '@db/database.ts';
import { DISCORD_LINK, PAYPAL_LINK, START_DATE, TEAMSPEAK_LINK } from 'astro:env/server';
@ -151,9 +151,9 @@ const signupDisabledSubMessage = signupSetting[SettingKey.SignupDisabledSubMessa
<script>
import { actions } from 'astro:actions';
import { popupState } from '@components/popup/Popup';
import { rulesPopupState, rulesPopupRead } from '@components/website/signup/RulesPopup';
import { teamPopupName, teamPopupOpen } from '@components/website/signup/TeamPopup';
import { registeredPopupState } from '@components/website/signup/RegisteredPopup';
import { rulesPopupState, rulesPopupRead } from '@app/website/signup/RulesPopup';
import { teamPopupName, teamPopupOpen } from '@app/website/signup/TeamPopup';
import { registeredPopupState } from '@app/website/signup/RegisteredPopup';
/* ----- client validation ----- */
const rulesCheckbox = document.getElementById('rules')! as HTMLInputElement;