Compare commits
No commits in common. "cdffb7038b7c47173d14413060239729651b6d62" and "5a86aac37d1c33c5862be809e624700d4ea650fa" have entirely different histories.
cdffb7038b
...
5a86aac37d
5 changed files with 8 additions and 18 deletions
|
|
@ -15,7 +15,6 @@
|
||||||
"astro": "^5.13.3",
|
"astro": "^5.13.3",
|
||||||
"astro-compressor": "^1.1.2",
|
"astro-compressor": "^1.1.2",
|
||||||
"lightningcss": "^1.30.1",
|
"lightningcss": "^1.30.1",
|
||||||
"nanostores": "^1.0.1",
|
|
||||||
"sharp": "^0.34.3",
|
"sharp": "^0.34.3",
|
||||||
"solid-js": "^1.9.9"
|
"solid-js": "^1.9.9"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
9
pnpm-lock.yaml
generated
9
pnpm-lock.yaml
generated
|
|
@ -23,9 +23,6 @@ importers:
|
||||||
lightningcss:
|
lightningcss:
|
||||||
specifier: ^1.30.1
|
specifier: ^1.30.1
|
||||||
version: 1.30.1
|
version: 1.30.1
|
||||||
nanostores:
|
|
||||||
specifier: ^1.0.1
|
|
||||||
version: 1.0.1
|
|
||||||
sharp:
|
sharp:
|
||||||
specifier: ^0.34.3
|
specifier: ^0.34.3
|
||||||
version: 0.34.3
|
version: 0.34.3
|
||||||
|
|
@ -1510,10 +1507,6 @@ packages:
|
||||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||||
hasBin: true
|
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:
|
neotraverse@0.6.18:
|
||||||
resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==}
|
resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==}
|
||||||
engines: {node: '>= 10'}
|
engines: {node: '>= 10'}
|
||||||
|
|
@ -3805,8 +3798,6 @@ snapshots:
|
||||||
|
|
||||||
nanoid@3.3.11: {}
|
nanoid@3.3.11: {}
|
||||||
|
|
||||||
nanostores@1.0.1: {}
|
|
||||||
|
|
||||||
neotraverse@0.6.18: {}
|
neotraverse@0.6.18: {}
|
||||||
|
|
||||||
nlcst-to-string@4.0.0:
|
nlcst-to-string@4.0.0:
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ const { title } = Astro.props
|
||||||
const websiteName = 'Template'
|
const websiteName = 'Template'
|
||||||
const websiteDescription = 'This is just a template.'
|
const websiteDescription = 'This is just a template.'
|
||||||
|
|
||||||
import Background from '../templates/Background/Background'
|
import Background from '../core/Background/Background'
|
||||||
---
|
---
|
||||||
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro'
|
import Layout from '../layouts/Layout.astro'
|
||||||
import Button from '../templates/Button/Button.tsx'
|
import Button from '../core/Button/Button.tsx'
|
||||||
import Image from '../templates/Image/Image'
|
import Image from '../core/Image/Image'
|
||||||
import Link from '../templates/Link/Link'
|
import Link from '../core/Link/Link'
|
||||||
import Counter from '../components/Counter/Counter.tsx'
|
import Counter from '../components/Counter/Counter.tsx'
|
||||||
import Page from '../templates/Page/Page'
|
import Page from '../core/Page/Page'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="FWT">
|
<Layout title="FWT">
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro'
|
import Layout from '../layouts/Layout.astro'
|
||||||
import Button from '../templates/Button/Button.tsx'
|
import Button from '../core/Button/Button.tsx'
|
||||||
import Image from '../templates/Image/Image'
|
import Image from '../core/Image/Image'
|
||||||
import Page from '../templates/Page/Page'
|
import Page from '../core/Page/Page'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Home">
|
<Layout title="Home">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue