ComponentOwl.com Astro conversion — 16 pages
24
.gitignore
vendored
Normal file
@@ -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/
|
||||||
4
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"recommendations": ["astro-build.astro-vscode"],
|
||||||
|
"unwantedRecommendations": []
|
||||||
|
}
|
||||||
11
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "./node_modules/.bin/astro dev",
|
||||||
|
"name": "Development server",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
43
README.md
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# Astro Starter Kit: Minimal
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm create astro@latest -- --template minimal
|
||||||
|
```
|
||||||
|
|
||||||
|
> 🧑🚀 **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).
|
||||||
9
astro.config.mjs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { defineConfig } from 'astro/config';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
site: 'https://www.componentowl.com',
|
||||||
|
trailingSlash: 'never',
|
||||||
|
build: {
|
||||||
|
format: 'file',
|
||||||
|
},
|
||||||
|
});
|
||||||
4695
package-lock.json
generated
Normal file
17
package.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "componentowl-astro",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=22.12.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"dev": "astro dev",
|
||||||
|
"build": "astro build",
|
||||||
|
"preview": "astro preview",
|
||||||
|
"astro": "astro"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"astro": "^6.0.8"
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 655 B |
9
public/favicon.svg
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
|
||||||
|
<path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" />
|
||||||
|
<style>
|
||||||
|
path { fill: #000; }
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
path { fill: #FFF; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 749 B |
BIN
public/images/RSS_32.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/images/arrow-bullet.gif
Normal file
|
After Width: | Height: | Size: 207 B |
BIN
public/images/arrow2.gif
Normal file
|
After Width: | Height: | Size: 843 B |
BIN
public/images/arrows.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/images/articles/vs-toolbox-integration/about-box.png
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
public/images/articles/vs-toolbox-integration/assembly-info.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 50 KiB |
BIN
public/images/articles/vs-toolbox-integration/comics.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
public/images/articles/vs-toolbox-integration/comparison-na.png
Normal file
|
After Width: | Height: | Size: 762 B |
BIN
public/images/articles/vs-toolbox-integration/comparison-no.png
Normal file
|
After Width: | Height: | Size: 872 B |
|
After Width: | Height: | Size: 587 B |
BIN
public/images/articles/vs-toolbox-integration/comparison-yes.png
Normal file
|
After Width: | Height: | Size: 882 B |
|
After Width: | Height: | Size: 16 KiB |
BIN
public/images/articles/vs-toolbox-integration/files-vsi.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 16 KiB |
BIN
public/images/articles/vs-toolbox-integration/sample-control.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 18 KiB |
BIN
public/images/articles/vs-toolbox-integration/splash-2008.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
public/images/articles/vs-toolbox-integration/splash-2010.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
public/images/articles/vs-toolbox-integration/splash-2012.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/images/articles/vs-toolbox-integration/tci-gac.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 57 KiB |
BIN
public/images/articles/vs-toolbox-integration/toolbox-1.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/images/articles/vs-toolbox-integration/toolbox-2.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
BIN
public/images/articles/vs-toolbox-integration/toolbox-icon.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 13 KiB |
BIN
public/images/articles/vs-toolbox-integration/toolbox-vsi.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 23 KiB |
BIN
public/images/articles/vs-toolbox-integration/vsix-options.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 22 KiB |
BIN
public/images/articles/vs-toolbox-integration/vsix-signed.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 12 KiB |
BIN
public/images/asp_logo-member.png?1455269978
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/bg.png
Normal file
|
After Width: | Height: | Size: 258 B |
BIN
public/images/blv-users.gif
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
public/images/brno.jpg?1455269978
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
public/images/bubble-small.gif
Normal file
|
After Width: | Height: | Size: 416 B |
BIN
public/images/button-buy-commercial-license.gif
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
public/images/button-buy-small.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/button-download.gif
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
public/images/button-free-download.gif
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
public/images/button-more.gif
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
public/images/button-pricing.gif
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
public/images/button-renew.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
public/images/comics-next.gif
Normal file
|
After Width: | Height: | Size: 884 B |
BIN
public/images/comics-prev.gif
Normal file
|
After Width: | Height: | Size: 889 B |
BIN
public/images/componentowl.gif?1455269978
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/images/dbtn-hilight.png
Normal file
|
After Width: | Height: | Size: 174 B |
BIN
public/images/dbtn.png
Normal file
|
After Width: | Height: | Size: 158 B |
BIN
public/images/dextronet-small.gif?1455269978
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/images/dextronet.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
public/images/dropdown-o.png
Normal file
|
After Width: | Height: | Size: 226 B |
BIN
public/images/dropdown-s.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/images/europe.jpg
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/fancybox/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
BIN
public/images/fancybox/fancy_close.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/images/fancybox/fancy_loading.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/images/fancybox/fancy_nav_left.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
public/images/fancybox/fancy_nav_right.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
public/images/fancybox/fancy_shadow_e.png
Normal file
|
After Width: | Height: | Size: 107 B |
BIN
public/images/fancybox/fancy_shadow_n.png
Normal file
|
After Width: | Height: | Size: 106 B |
BIN
public/images/fancybox/fancy_shadow_ne.png
Normal file
|
After Width: | Height: | Size: 347 B |
BIN
public/images/fancybox/fancy_shadow_nw.png
Normal file
|
After Width: | Height: | Size: 324 B |
BIN
public/images/fancybox/fancy_shadow_s.png
Normal file
|
After Width: | Height: | Size: 111 B |
BIN
public/images/fancybox/fancy_shadow_se.png
Normal file
|
After Width: | Height: | Size: 352 B |
BIN
public/images/fancybox/fancy_shadow_sw.png
Normal file
|
After Width: | Height: | Size: 340 B |
BIN
public/images/fancybox/fancy_shadow_w.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
public/images/fancybox/fancy_title_left.png
Normal file
|
After Width: | Height: | Size: 503 B |
BIN
public/images/fancybox/fancy_title_main.png
Normal file
|
After Width: | Height: | Size: 96 B |