commit 4ae2f0954f0b679822147723cba69de85b528e16 Author: LittleSheep Date: Tue Jun 4 23:59:29 2024 +0800 :tada: Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..16d54bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store + +# jetbrains setting folder +.idea/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..22a1505 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d642209 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "command": "./node_modules/.bin/astro dev", + "name": "Development server", + "request": "launch", + "type": "node-terminal" + } + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..e34a99b --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Astro Starter Kit: Minimal + +```sh +npm create astro@latest -- --template minimal +``` + +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal) +[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal) +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json) + +> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! + +## 🚀 Project Structure + +Inside of your Astro project, you'll see the following folders and files: + +```text +/ +├── public/ +├── src/ +│ └── 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/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..461bd30 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,8 @@ +import { defineConfig } from 'astro/config'; + +import tailwind from "@astrojs/tailwind"; + +// https://astro.build/config +export default defineConfig({ + integrations: [tailwind()] +}); \ No newline at end of file diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..ae83744 Binary files /dev/null and b/bun.lockb differ diff --git a/package.json b/package.json new file mode 100644 index 0000000..feb7d5d --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "capital", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro check && astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/check": "^0.7.0", + "@astrojs/tailwind": "^5.1.0", + "astro": "^4.9.2", + "tailwindcss": "^3.4.3", + "typescript": "^5.4.5" + }, + "devDependencies": { + "@tailwindcss/typography": "^0.5.13", + "daisyui": "^4.11.1", + "prettier": "^3.3.0", + "prettier-plugin-astro": "^0.14.0" + } +} \ No newline at end of file diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..f157bd1 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,9 @@ + + + + diff --git a/src/assets/solar.svg b/src/assets/solar.svg new file mode 100644 index 0000000..1a3fb1a --- /dev/null +++ b/src/assets/solar.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/src/assets/solian.png b/src/assets/solian.png new file mode 100644 index 0000000..708faa5 Binary files /dev/null and b/src/assets/solian.png differ diff --git a/src/components/navigation/Footer.astro b/src/components/navigation/Footer.astro new file mode 100644 index 0000000..6f33e13 --- /dev/null +++ b/src/components/navigation/Footer.astro @@ -0,0 +1,5 @@ + diff --git a/src/components/navigation/NavBar.astro b/src/components/navigation/NavBar.astro new file mode 100644 index 0000000..84918a2 --- /dev/null +++ b/src/components/navigation/NavBar.astro @@ -0,0 +1,28 @@ + diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..f964fe0 --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1 @@ +/// diff --git a/src/layouts/ProductLayout.astro b/src/layouts/ProductLayout.astro new file mode 100644 index 0000000..22a92fa --- /dev/null +++ b/src/layouts/ProductLayout.astro @@ -0,0 +1,17 @@ +--- +import SiteLayout from "./SiteLayout.astro"; +--- + + +
+
+
+ +
+
+
+ +
+
+
+
diff --git a/src/layouts/SiteLayout.astro b/src/layouts/SiteLayout.astro new file mode 100644 index 0000000..75cdf39 --- /dev/null +++ b/src/layouts/SiteLayout.astro @@ -0,0 +1,20 @@ +--- +import NavBar from "../components/navigation/NavBar.astro"; +import Footer from "../components/navigation/Footer.astro"; +--- + + + + + + + Solsynth + + + +
+ +
+