From 4a7bf5a4a32470b543b26cb7eaa68519bc27dd21 Mon Sep 17 00:00:00 2001 From: lafay <2021211506@stu.hit.edu.cn> Date: Tue, 28 Apr 2026 11:16:57 +0800 Subject: [PATCH] restructure: move files from qczl-website subfolder to root --- qczl-website/.gitignore => .gitignore | 0 qczl-website/index.html => index.html | 0 qczl-website/package-lock.json => package-lock.json | 0 qczl-website/package.json => package.json | 0 {qczl-website/public => public}/favicon.svg | 0 .../fonts/GeistMono-Variable.woff2 | Bin {qczl-website/public => public}/icons.svg | 0 {qczl-website/src => src}/App.tsx | 0 {qczl-website/src => src}/assets/hero.png | Bin {qczl-website/src => src}/assets/typescript.svg | 0 {qczl-website/src => src}/assets/vite.svg | 0 .../src => src}/components/sections/about.tsx | 0 .../src => src}/components/sections/cases.tsx | 0 .../src => src}/components/sections/contact.tsx | 0 .../src => src}/components/sections/footer.tsx | 0 .../src => src}/components/sections/hero.tsx | 0 .../src => src}/components/sections/navbar.tsx | 0 .../src => src}/components/sections/services.tsx | 0 .../src => src}/components/sections/team.tsx | 0 {qczl-website/src => src}/components/ui/button.tsx | 0 {qczl-website/src => src}/components/ui/card.tsx | 0 {qczl-website/src => src}/components/ui/input.tsx | 0 .../src => src}/components/ui/textarea.tsx | 0 {qczl-website/src => src}/index.css | 0 {qczl-website/src => src}/lib/utils.ts | 0 {qczl-website/src => src}/main.tsx | 0 {qczl-website/src => src}/style.css | 0 {qczl-website/src => src}/vite-env.d.ts | 0 qczl-website/tsconfig.json => tsconfig.json | 0 qczl-website/vite.config.ts => vite.config.ts | 0 30 files changed, 0 insertions(+), 0 deletions(-) rename qczl-website/.gitignore => .gitignore (100%) rename qczl-website/index.html => index.html (100%) rename qczl-website/package-lock.json => package-lock.json (100%) rename qczl-website/package.json => package.json (100%) rename {qczl-website/public => public}/favicon.svg (100%) rename {qczl-website/public => public}/fonts/GeistMono-Variable.woff2 (100%) rename {qczl-website/public => public}/icons.svg (100%) rename {qczl-website/src => src}/App.tsx (100%) rename {qczl-website/src => src}/assets/hero.png (100%) rename {qczl-website/src => src}/assets/typescript.svg (100%) rename {qczl-website/src => src}/assets/vite.svg (100%) rename {qczl-website/src => src}/components/sections/about.tsx (100%) rename {qczl-website/src => src}/components/sections/cases.tsx (100%) rename {qczl-website/src => src}/components/sections/contact.tsx (100%) rename {qczl-website/src => src}/components/sections/footer.tsx (100%) rename {qczl-website/src => src}/components/sections/hero.tsx (100%) rename {qczl-website/src => src}/components/sections/navbar.tsx (100%) rename {qczl-website/src => src}/components/sections/services.tsx (100%) rename {qczl-website/src => src}/components/sections/team.tsx (100%) rename {qczl-website/src => src}/components/ui/button.tsx (100%) rename {qczl-website/src => src}/components/ui/card.tsx (100%) rename {qczl-website/src => src}/components/ui/input.tsx (100%) rename {qczl-website/src => src}/components/ui/textarea.tsx (100%) rename {qczl-website/src => src}/index.css (100%) rename {qczl-website/src => src}/lib/utils.ts (100%) rename {qczl-website/src => src}/main.tsx (100%) rename {qczl-website/src => src}/style.css (100%) rename {qczl-website/src => src}/vite-env.d.ts (100%) rename qczl-website/tsconfig.json => tsconfig.json (100%) rename qczl-website/vite.config.ts => vite.config.ts (100%) diff --git a/qczl-website/.gitignore b/.gitignore similarity index 100% rename from qczl-website/.gitignore rename to .gitignore diff --git a/qczl-website/index.html b/index.html similarity index 100% rename from qczl-website/index.html rename to index.html diff --git a/qczl-website/package-lock.json b/package-lock.json similarity index 100% rename from qczl-website/package-lock.json rename to package-lock.json diff --git a/qczl-website/package.json b/package.json similarity index 100% rename from qczl-website/package.json rename to package.json diff --git a/qczl-website/public/favicon.svg b/public/favicon.svg similarity index 100% rename from qczl-website/public/favicon.svg rename to public/favicon.svg diff --git a/qczl-website/public/fonts/GeistMono-Variable.woff2 b/public/fonts/GeistMono-Variable.woff2 similarity index 100% rename from qczl-website/public/fonts/GeistMono-Variable.woff2 rename to public/fonts/GeistMono-Variable.woff2 diff --git a/qczl-website/public/icons.svg b/public/icons.svg similarity index 100% rename from qczl-website/public/icons.svg rename to public/icons.svg diff --git a/qczl-website/src/App.tsx b/src/App.tsx similarity index 100% rename from qczl-website/src/App.tsx rename to src/App.tsx diff --git a/qczl-website/src/assets/hero.png b/src/assets/hero.png similarity index 100% rename from qczl-website/src/assets/hero.png rename to src/assets/hero.png diff --git a/qczl-website/src/assets/typescript.svg b/src/assets/typescript.svg similarity index 100% rename from qczl-website/src/assets/typescript.svg rename to src/assets/typescript.svg diff --git a/qczl-website/src/assets/vite.svg b/src/assets/vite.svg similarity index 100% rename from qczl-website/src/assets/vite.svg rename to src/assets/vite.svg diff --git a/qczl-website/src/components/sections/about.tsx b/src/components/sections/about.tsx similarity index 100% rename from qczl-website/src/components/sections/about.tsx rename to src/components/sections/about.tsx diff --git a/qczl-website/src/components/sections/cases.tsx b/src/components/sections/cases.tsx similarity index 100% rename from qczl-website/src/components/sections/cases.tsx rename to src/components/sections/cases.tsx diff --git a/qczl-website/src/components/sections/contact.tsx b/src/components/sections/contact.tsx similarity index 100% rename from qczl-website/src/components/sections/contact.tsx rename to src/components/sections/contact.tsx diff --git a/qczl-website/src/components/sections/footer.tsx b/src/components/sections/footer.tsx similarity index 100% rename from qczl-website/src/components/sections/footer.tsx rename to src/components/sections/footer.tsx diff --git a/qczl-website/src/components/sections/hero.tsx b/src/components/sections/hero.tsx similarity index 100% rename from qczl-website/src/components/sections/hero.tsx rename to src/components/sections/hero.tsx diff --git a/qczl-website/src/components/sections/navbar.tsx b/src/components/sections/navbar.tsx similarity index 100% rename from qczl-website/src/components/sections/navbar.tsx rename to src/components/sections/navbar.tsx diff --git a/qczl-website/src/components/sections/services.tsx b/src/components/sections/services.tsx similarity index 100% rename from qczl-website/src/components/sections/services.tsx rename to src/components/sections/services.tsx diff --git a/qczl-website/src/components/sections/team.tsx b/src/components/sections/team.tsx similarity index 100% rename from qczl-website/src/components/sections/team.tsx rename to src/components/sections/team.tsx diff --git a/qczl-website/src/components/ui/button.tsx b/src/components/ui/button.tsx similarity index 100% rename from qczl-website/src/components/ui/button.tsx rename to src/components/ui/button.tsx diff --git a/qczl-website/src/components/ui/card.tsx b/src/components/ui/card.tsx similarity index 100% rename from qczl-website/src/components/ui/card.tsx rename to src/components/ui/card.tsx diff --git a/qczl-website/src/components/ui/input.tsx b/src/components/ui/input.tsx similarity index 100% rename from qczl-website/src/components/ui/input.tsx rename to src/components/ui/input.tsx diff --git a/qczl-website/src/components/ui/textarea.tsx b/src/components/ui/textarea.tsx similarity index 100% rename from qczl-website/src/components/ui/textarea.tsx rename to src/components/ui/textarea.tsx diff --git a/qczl-website/src/index.css b/src/index.css similarity index 100% rename from qczl-website/src/index.css rename to src/index.css diff --git a/qczl-website/src/lib/utils.ts b/src/lib/utils.ts similarity index 100% rename from qczl-website/src/lib/utils.ts rename to src/lib/utils.ts diff --git a/qczl-website/src/main.tsx b/src/main.tsx similarity index 100% rename from qczl-website/src/main.tsx rename to src/main.tsx diff --git a/qczl-website/src/style.css b/src/style.css similarity index 100% rename from qczl-website/src/style.css rename to src/style.css diff --git a/qczl-website/src/vite-env.d.ts b/src/vite-env.d.ts similarity index 100% rename from qczl-website/src/vite-env.d.ts rename to src/vite-env.d.ts diff --git a/qczl-website/tsconfig.json b/tsconfig.json similarity index 100% rename from qczl-website/tsconfig.json rename to tsconfig.json diff --git a/qczl-website/vite.config.ts b/vite.config.ts similarity index 100% rename from qczl-website/vite.config.ts rename to vite.config.ts