diff --git a/examples/framework-alpine/src/components/Counter.astro b/examples/framework-alpine/src/components/Counter.astro index b895d57be8..00182f0069 100644 --- a/examples/framework-alpine/src/components/Counter.astro +++ b/examples/framework-alpine/src/components/Counter.astro @@ -1,6 +1,6 @@ --- // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ interface Props { initialCount?: number; diff --git a/examples/framework-alpine/src/pages/index.astro b/examples/framework-alpine/src/pages/index.astro index ecfc8499c4..e77744cb24 100644 --- a/examples/framework-alpine/src/pages/index.astro +++ b/examples/framework-alpine/src/pages/index.astro @@ -3,7 +3,7 @@ import Counter from '../components/Counter.astro'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro index 5ef314f6fc..5fa6fed67f 100644 --- a/examples/framework-lit/src/pages/index.astro +++ b/examples/framework-lit/src/pages/index.astro @@ -4,7 +4,7 @@ import { CalcAdd } from '../components/calc-add.js'; import { MyCounter } from '../components/my-counter.js'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-multiple/src/pages/index.astro b/examples/framework-multiple/src/pages/index.astro index ccf5aaa715..d420111a29 100644 --- a/examples/framework-multiple/src/pages/index.astro +++ b/examples/framework-multiple/src/pages/index.astro @@ -12,7 +12,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-preact/src/pages/index.astro b/examples/framework-preact/src/pages/index.astro index b37295d7b9..639fed70cd 100644 --- a/examples/framework-preact/src/pages/index.astro +++ b/examples/framework-preact/src/pages/index.astro @@ -5,7 +5,7 @@ import Counter from '../components/Counter'; import { signal } from '@preact/signals'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ const count = signal(0); --- diff --git a/examples/framework-react/src/pages/index.astro b/examples/framework-react/src/pages/index.astro index cd7bdc52ef..5bc1f8d365 100644 --- a/examples/framework-react/src/pages/index.astro +++ b/examples/framework-react/src/pages/index.astro @@ -6,7 +6,7 @@ const someProps = { }; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-solid/src/pages/index.astro b/examples/framework-solid/src/pages/index.astro index 5ff8c9fb6a..b191ef47fb 100644 --- a/examples/framework-solid/src/pages/index.astro +++ b/examples/framework-solid/src/pages/index.astro @@ -3,7 +3,7 @@ import Counter from '../components/Counter'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-svelte/src/pages/index.astro b/examples/framework-svelte/src/pages/index.astro index 3314afe498..c4f0c1efb1 100644 --- a/examples/framework-svelte/src/pages/index.astro +++ b/examples/framework-svelte/src/pages/index.astro @@ -3,7 +3,7 @@ import Counter from '../components/Counter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/framework-vue/src/pages/index.astro b/examples/framework-vue/src/pages/index.astro index 85b6594b10..bae5effe86 100644 --- a/examples/framework-vue/src/pages/index.astro +++ b/examples/framework-vue/src/pages/index.astro @@ -3,7 +3,7 @@ import Counter from '../components/Counter.vue'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/portfolio/src/pages/index.astro b/examples/portfolio/src/pages/index.astro index 76761523f7..5f67e3860b 100644 --- a/examples/portfolio/src/pages/index.astro +++ b/examples/portfolio/src/pages/index.astro @@ -22,7 +22,7 @@ const projects = (await getCollection('work')) .slice(0, 4); // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/examples/with-tailwindcss/src/pages/index.astro b/examples/with-tailwindcss/src/pages/index.astro index 5a0e50ab19..bde5b0d29f 100644 --- a/examples/with-tailwindcss/src/pages/index.astro +++ b/examples/with-tailwindcss/src/pages/index.astro @@ -3,7 +3,7 @@ import Button from '../components/Button.astro'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/client-only/src/pages/index.astro b/packages/astro/e2e/fixtures/client-only/src/pages/index.astro index 0b42996008..d8b30b9cf0 100644 --- a/packages/astro/e2e/fixtures/client-only/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/client-only/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/multiple-frameworks/src/pages/index.astro b/packages/astro/e2e/fixtures/multiple-frameworks/src/pages/index.astro index 747744852c..ded58d8aa1 100644 --- a/packages/astro/e2e/fixtures/multiple-frameworks/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/multiple-frameworks/src/pages/index.astro @@ -10,7 +10,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/nested-in-preact/src/pages/index.astro b/packages/astro/e2e/fixtures/nested-in-preact/src/pages/index.astro index 7512b86f4d..19ab504275 100644 --- a/packages/astro/e2e/fixtures/nested-in-preact/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/nested-in-preact/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/nested-in-react/src/pages/index.astro b/packages/astro/e2e/fixtures/nested-in-react/src/pages/index.astro index fe18a31512..1ab459f743 100644 --- a/packages/astro/e2e/fixtures/nested-in-react/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/nested-in-react/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/nested-in-solid/src/pages/index.astro b/packages/astro/e2e/fixtures/nested-in-solid/src/pages/index.astro index 7b2c8da8d2..91552a8367 100644 --- a/packages/astro/e2e/fixtures/nested-in-solid/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/nested-in-solid/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/nested-in-svelte/src/pages/index.astro b/packages/astro/e2e/fixtures/nested-in-svelte/src/pages/index.astro index aa11de7fd8..5648a25814 100644 --- a/packages/astro/e2e/fixtures/nested-in-svelte/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/nested-in-svelte/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/e2e/fixtures/nested-in-vue/src/pages/index.astro b/packages/astro/e2e/fixtures/nested-in-vue/src/pages/index.astro index e89554755e..ea0a88f84d 100644 --- a/packages/astro/e2e/fixtures/nested-in-vue/src/pages/index.astro +++ b/packages/astro/e2e/fixtures/nested-in-vue/src/pages/index.astro @@ -6,7 +6,7 @@ import VueCounter from '../components/vue/VueCounter.vue'; import SvelteCounter from '../components/svelte/SvelteCounter.svelte'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ --- diff --git a/packages/astro/test/fixtures/hydration-race/src/pages/slot.astro b/packages/astro/test/fixtures/hydration-race/src/pages/slot.astro index 7d70f561e2..e64158b1a6 100644 --- a/packages/astro/test/fixtures/hydration-race/src/pages/slot.astro +++ b/packages/astro/test/fixtures/hydration-race/src/pages/slot.astro @@ -4,7 +4,7 @@ import Demo from '../components/One.jsx'; import WithSlot from '../components/WithSlot.astro'; // Full Astro Component Syntax: -// https://docs.astro.build/core-concepts/astro-components/ +// https://docs.astro.build/basics/astro-components/ ---