Compare commits
2 commits
5a86aac37d
...
cdffb7038b
| Author | SHA1 | Date | |
|---|---|---|---|
| cdffb7038b | |||
| 2d9d7aa41c |
5 changed files with 18 additions and 8 deletions
|
|
@ -15,6 +15,7 @@
|
|||
"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"
|
||||
},
|
||||
|
|
|
|||
9
pnpm-lock.yaml
generated
9
pnpm-lock.yaml
generated
|
|
@ -23,6 +23,9 @@ 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
|
||||
|
|
@ -1507,6 +1510,10 @@ 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'}
|
||||
|
|
@ -3798,6 +3805,8 @@ snapshots:
|
|||
|
||||
nanoid@3.3.11: {}
|
||||
|
||||
nanostores@1.0.1: {}
|
||||
|
||||
neotraverse@0.6.18: {}
|
||||
|
||||
nlcst-to-string@4.0.0:
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ const { title } = Astro.props
|
|||
const websiteName = 'Template'
|
||||
const websiteDescription = 'This is just a template.'
|
||||
|
||||
import Background from '../core/Background/Background'
|
||||
import Background from '../templates/Background/Background'
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Button from '../core/Button/Button.tsx'
|
||||
import Image from '../core/Image/Image'
|
||||
import Link from '../core/Link/Link'
|
||||
import Button from '../templates/Button/Button.tsx'
|
||||
import Image from '../templates/Image/Image'
|
||||
import Link from '../templates/Link/Link'
|
||||
import Counter from '../components/Counter/Counter.tsx'
|
||||
import Page from '../core/Page/Page'
|
||||
import Page from '../templates/Page/Page'
|
||||
---
|
||||
|
||||
<Layout title="FWT">
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Button from '../core/Button/Button.tsx'
|
||||
import Image from '../core/Image/Image'
|
||||
import Page from '../core/Page/Page'
|
||||
import Button from '../templates/Button/Button.tsx'
|
||||
import Image from '../templates/Image/Image'
|
||||
import Page from '../templates/Page/Page'
|
||||
---
|
||||
|
||||
<Layout title="Home">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue