Garlic
+Garlic is a simple, fast and secure way to protect your website from being scraped by bots.
+You write your code and text as you would any other day, just let garlic protect your content from scraping.
+ + About + +diff --git a/astro/README.md b/astro/README.md new file mode 100644 index 0000000..e69de29 diff --git a/astro/strong-singularity/.gitignore b/astro/strong-singularity/.gitignore new file mode 100644 index 0000000..6d4c0aa --- /dev/null +++ b/astro/strong-singularity/.gitignore @@ -0,0 +1,21 @@ +# 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 diff --git a/astro/strong-singularity/README.md b/astro/strong-singularity/README.md new file mode 100644 index 0000000..961e54e --- /dev/null +++ b/astro/strong-singularity/README.md @@ -0,0 +1,55 @@ +# Astro Starter Kit: Basics + +``` +npm create astro@latest -- --template basics +``` + +[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics) +[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics) +[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json) + +> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun! + + + + +## 🚀 Project Structure + +Inside of your Astro project, you'll see the following folders and files: + +``` +/ +├── 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:3000` | +| `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/strong-singularity/astro.config.mjs b/astro/strong-singularity/astro.config.mjs new file mode 100644 index 0000000..895a25b --- /dev/null +++ b/astro/strong-singularity/astro.config.mjs @@ -0,0 +1,9 @@ +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +import mdx from "@astrojs/mdx"; + +// https://astro.build/config +export default defineConfig({ + integrations: [mdx()] +}); \ No newline at end of file diff --git a/astro/strong-singularity/package.json b/astro/strong-singularity/package.json new file mode 100644 index 0000000..15fd437 --- /dev/null +++ b/astro/strong-singularity/package.json @@ -0,0 +1,18 @@ +{ + "name": "strong-singularity", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/mdx": "^0.17.2", + "astro": "^2.0.16", + "garlic-astro": "file:../../garlic-astro", + "jsdom": "^21.1.0" + } +} diff --git a/astro/strong-singularity/public/favicon.svg b/astro/strong-singularity/public/favicon.svg new file mode 100644 index 0000000..0f39062 --- /dev/null +++ b/astro/strong-singularity/public/favicon.svg @@ -0,0 +1,13 @@ + diff --git a/astro/strong-singularity/src/components/Card.astro b/astro/strong-singularity/src/components/Card.astro new file mode 100644 index 0000000..c68fa2a --- /dev/null +++ b/astro/strong-singularity/src/components/Card.astro @@ -0,0 +1,63 @@ +--- +export interface Props { + title: string; + body: string; + href: string; +} + +const { href, title, body } = Astro.props; +--- + +
+ {body} +
+ +Garlic is a simple, fast and secure way to protect your website from being scraped by bots.
+You write your code and text as you would any other day, just let garlic protect your content from scraping.
+ + About + +