diff --git a/resume/.gitignore b/.gitignore similarity index 100% rename from resume/.gitignore rename to .gitignore diff --git a/README.md b/README.md index a85ec80..1db3fb3 100644 Binary files a/README.md and b/README.md differ diff --git a/resume/astro.config.mjs b/astro.config.mjs similarity index 100% rename from resume/astro.config.mjs rename to astro.config.mjs diff --git a/resume/bun.lockb b/bun.lockb similarity index 100% rename from resume/bun.lockb rename to bun.lockb diff --git a/resume/package-lock.json b/package-lock.json similarity index 100% rename from resume/package-lock.json rename to package-lock.json diff --git a/resume/package.json b/package.json similarity index 100% rename from resume/package.json rename to package.json diff --git a/resume/pnpm-lock.yaml b/pnpm-lock.yaml similarity index 100% rename from resume/pnpm-lock.yaml rename to pnpm-lock.yaml diff --git a/resume/public/donald-trump.jpg b/public/donald-trump.jpg similarity index 100% rename from resume/public/donald-trump.jpg rename to public/donald-trump.jpg diff --git a/resume/README.md b/resume/README.md deleted file mode 100644 index 1db3fb3..0000000 --- a/resume/README.md +++ /dev/null @@ -1,54 +0,0 @@ -# Astro Starter Kit: Basics - -```sh -npm create astro@latest -- --template basics -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics) -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json) - -> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! - -![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554) - -## 🚀 Project Structure - -Inside of your Astro project, you'll see the following folders and files: - -```text -/ -├── public/ -│ └── favicon.svg -├── src/ -│ ├── components/ -│ │ └── Card.astro -│ ├── layouts/ -│ │ └── Layout.astro -│ └── pages/ -│ └── index.astro -└── package.json -``` - -Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. - -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. - -Any static assets, like images, can be placed in the `public/` directory. - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :------------------------ | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). diff --git a/resume/src/components/Card.astro b/src/components/Card.astro similarity index 100% rename from resume/src/components/Card.astro rename to src/components/Card.astro diff --git a/resume/src/components/ContactInfo.astro b/src/components/ContactInfo.astro similarity index 100% rename from resume/src/components/ContactInfo.astro rename to src/components/ContactInfo.astro diff --git a/resume/src/components/Education.astro b/src/components/Education.astro similarity index 100% rename from resume/src/components/Education.astro rename to src/components/Education.astro diff --git a/resume/src/components/Experience.astro b/src/components/Experience.astro similarity index 100% rename from resume/src/components/Experience.astro rename to src/components/Experience.astro diff --git a/resume/src/components/Header.astro b/src/components/Header.astro similarity index 100% rename from resume/src/components/Header.astro rename to src/components/Header.astro diff --git a/resume/src/components/Languages.astro b/src/components/Languages.astro similarity index 100% rename from resume/src/components/Languages.astro rename to src/components/Languages.astro diff --git a/resume/src/components/Projects.astro b/src/components/Projects.astro similarity index 100% rename from resume/src/components/Projects.astro rename to src/components/Projects.astro diff --git a/resume/src/components/Skills.astro b/src/components/Skills.astro similarity index 100% rename from resume/src/components/Skills.astro rename to src/components/Skills.astro diff --git a/resume/src/env.d.ts b/src/env.d.ts similarity index 100% rename from resume/src/env.d.ts rename to src/env.d.ts diff --git a/resume/src/layouts/Layout.astro b/src/layouts/Layout.astro similarity index 100% rename from resume/src/layouts/Layout.astro rename to src/layouts/Layout.astro diff --git a/resume/src/pages/en.astro b/src/pages/en.astro similarity index 100% rename from resume/src/pages/en.astro rename to src/pages/en.astro diff --git a/resume/src/pages/index.astro b/src/pages/index.astro similarity index 100% rename from resume/src/pages/index.astro rename to src/pages/index.astro diff --git a/resume/src/pages/wohn.astro b/src/pages/wohn.astro similarity index 100% rename from resume/src/pages/wohn.astro rename to src/pages/wohn.astro diff --git a/resume/tailwind.config.mjs b/tailwind.config.mjs similarity index 100% rename from resume/tailwind.config.mjs rename to tailwind.config.mjs diff --git a/resume/tsconfig.json b/tsconfig.json similarity index 100% rename from resume/tsconfig.json rename to tsconfig.json