diff --git a/package.json b/package.json index 5acdc4d..4436676 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,6 @@ "astro": "^5.13.3", "astro-compressor": "^1.1.2", "lightningcss": "^1.30.1", - "nanostores": "^1.0.1", "sharp": "^0.34.3", "solid-js": "^1.9.9" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9c3574d..507160b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: lightningcss: specifier: ^1.30.1 version: 1.30.1 - nanostores: - specifier: ^1.0.1 - version: 1.0.1 sharp: specifier: ^0.34.3 version: 0.34.3 @@ -1510,10 +1507,6 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanostores@1.0.1: - resolution: {integrity: sha512-kNZ9xnoJYKg/AfxjrVL4SS0fKX++4awQReGqWnwTRHxeHGZ1FJFVgTqr/eMrNQdp0Tz7M7tG/TDaX8QfHDwVCw==} - engines: {node: ^20.0.0 || >=22.0.0} - neotraverse@0.6.18: resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} engines: {node: '>= 10'} @@ -3805,8 +3798,6 @@ snapshots: nanoid@3.3.11: {} - nanostores@1.0.1: {} - neotraverse@0.6.18: {} nlcst-to-string@4.0.0: diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e964c50..ba429dc 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -4,7 +4,7 @@ const { title } = Astro.props const websiteName = 'Template' const websiteDescription = 'This is just a template.' -import Background from '../templates/Background/Background' +import Background from '../core/Background/Background' --- diff --git a/src/pages/index.astro b/src/pages/index.astro index a30725d..738dd39 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,10 +1,10 @@ --- import Layout from '../layouts/Layout.astro' -import Button from '../templates/Button/Button.tsx' -import Image from '../templates/Image/Image' -import Link from '../templates/Link/Link' +import Button from '../core/Button/Button.tsx' +import Image from '../core/Image/Image' +import Link from '../core/Link/Link' import Counter from '../components/Counter/Counter.tsx' -import Page from '../templates/Page/Page' +import Page from '../core/Page/Page' --- diff --git a/src/pages/next.astro b/src/pages/next.astro index ac757c9..51d9ffb 100644 --- a/src/pages/next.astro +++ b/src/pages/next.astro @@ -1,8 +1,8 @@ --- import Layout from '../layouts/Layout.astro' -import Button from '../templates/Button/Button.tsx' -import Image from '../templates/Image/Image' -import Page from '../templates/Page/Page' +import Button from '../core/Button/Button.tsx' +import Image from '../core/Image/Image' +import Page from '../core/Page/Page' ---