From f447a2293a316e68e8cac49ab956c8200a68475b Mon Sep 17 00:00:00 2001 From: Delta1925 Date: Sun, 16 Apr 2023 16:19:16 +0200 Subject: [PATCH] Move all files into website directory --- .gitignore => website/.gitignore | 0 .prettierrc.cjs => website/.prettierrc.cjs | 0 {.vscode => website/.vscode}/extensions.json | 0 {.vscode => website/.vscode}/launch.json | 0 {.vscode => website/.vscode}/settings.json | 0 README.md => website/README.md | 0 astro.config.mjs => website/astro.config.mjs | 0 package.json => website/package.json | 0 pnpm-lock.yaml => website/pnpm-lock.yaml | 0 {src => website/src}/components/center-xy.astro | 0 {src => website/src}/components/cursor-catcher.astro | 0 {src => website/src}/env.d.ts | 0 {src => website/src}/layouts/Layout.astro | 0 {src => website/src}/pages/delete.astro | 0 {src => website/src}/pages/index.astro | 0 {src => website/src}/pages/status.astro | 0 {src => website/src}/pages/submit.astro | 0 {src => website/src}/styles/global.css | 0 tailwind.config.cjs => website/tailwind.config.cjs | 0 tsconfig.json => website/tsconfig.json | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => website/.gitignore (100%) rename .prettierrc.cjs => website/.prettierrc.cjs (100%) rename {.vscode => website/.vscode}/extensions.json (100%) rename {.vscode => website/.vscode}/launch.json (100%) rename {.vscode => website/.vscode}/settings.json (100%) rename README.md => website/README.md (100%) rename astro.config.mjs => website/astro.config.mjs (100%) rename package.json => website/package.json (100%) rename pnpm-lock.yaml => website/pnpm-lock.yaml (100%) rename {src => website/src}/components/center-xy.astro (100%) rename {src => website/src}/components/cursor-catcher.astro (100%) rename {src => website/src}/env.d.ts (100%) rename {src => website/src}/layouts/Layout.astro (100%) rename {src => website/src}/pages/delete.astro (100%) rename {src => website/src}/pages/index.astro (100%) rename {src => website/src}/pages/status.astro (100%) rename {src => website/src}/pages/submit.astro (100%) rename {src => website/src}/styles/global.css (100%) rename tailwind.config.cjs => website/tailwind.config.cjs (100%) rename tsconfig.json => website/tsconfig.json (100%) diff --git a/.gitignore b/website/.gitignore similarity index 100% rename from .gitignore rename to website/.gitignore diff --git a/.prettierrc.cjs b/website/.prettierrc.cjs similarity index 100% rename from .prettierrc.cjs rename to website/.prettierrc.cjs diff --git a/.vscode/extensions.json b/website/.vscode/extensions.json similarity index 100% rename from .vscode/extensions.json rename to website/.vscode/extensions.json diff --git a/.vscode/launch.json b/website/.vscode/launch.json similarity index 100% rename from .vscode/launch.json rename to website/.vscode/launch.json diff --git a/.vscode/settings.json b/website/.vscode/settings.json similarity index 100% rename from .vscode/settings.json rename to website/.vscode/settings.json diff --git a/README.md b/website/README.md similarity index 100% rename from README.md rename to website/README.md diff --git a/astro.config.mjs b/website/astro.config.mjs similarity index 100% rename from astro.config.mjs rename to website/astro.config.mjs diff --git a/package.json b/website/package.json similarity index 100% rename from package.json rename to website/package.json diff --git a/pnpm-lock.yaml b/website/pnpm-lock.yaml similarity index 100% rename from pnpm-lock.yaml rename to website/pnpm-lock.yaml diff --git a/src/components/center-xy.astro b/website/src/components/center-xy.astro similarity index 100% rename from src/components/center-xy.astro rename to website/src/components/center-xy.astro diff --git a/src/components/cursor-catcher.astro b/website/src/components/cursor-catcher.astro similarity index 100% rename from src/components/cursor-catcher.astro rename to website/src/components/cursor-catcher.astro diff --git a/src/env.d.ts b/website/src/env.d.ts similarity index 100% rename from src/env.d.ts rename to website/src/env.d.ts diff --git a/src/layouts/Layout.astro b/website/src/layouts/Layout.astro similarity index 100% rename from src/layouts/Layout.astro rename to website/src/layouts/Layout.astro diff --git a/src/pages/delete.astro b/website/src/pages/delete.astro similarity index 100% rename from src/pages/delete.astro rename to website/src/pages/delete.astro diff --git a/src/pages/index.astro b/website/src/pages/index.astro similarity index 100% rename from src/pages/index.astro rename to website/src/pages/index.astro diff --git a/src/pages/status.astro b/website/src/pages/status.astro similarity index 100% rename from src/pages/status.astro rename to website/src/pages/status.astro diff --git a/src/pages/submit.astro b/website/src/pages/submit.astro similarity index 100% rename from src/pages/submit.astro rename to website/src/pages/submit.astro diff --git a/src/styles/global.css b/website/src/styles/global.css similarity index 100% rename from src/styles/global.css rename to website/src/styles/global.css diff --git a/tailwind.config.cjs b/website/tailwind.config.cjs similarity index 100% rename from tailwind.config.cjs rename to website/tailwind.config.cjs diff --git a/tsconfig.json b/website/tsconfig.json similarity index 100% rename from tsconfig.json rename to website/tsconfig.json