diff --git a/README.md b/README.md
index 299c16a..c520955 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,13 @@ sudo vim docker-compose.yml
```
docker compose up -d
```
+#### Remove the dangling image created
+
+An node image was created as a requirement for the build process, to ensure dependencies are installed. This image is temporary and should be remove afer the built project is moved to nginx runtime image.
+
+```
+docker rmi $(docker images -f "dangling=true" -q)
+```
### Podman
@@ -77,6 +84,12 @@ docker compose up -d
podman-compose up -d
```
+#### Remove the dangling image created
+
+```
+podman rmi $(docker images -f "dangling=true" -q)
+```
+
### Podman Quadlet
#### Edit Quadlet Container
diff --git a/fwt/components/Modal.tsx b/fwt/components/Modal.tsx
deleted file mode 100644
index 70068fa..0000000
--- a/fwt/components/Modal.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import '../styles/Modal.sass'
-import { type JSXElement, Show, createSignal } from 'solid-js'
-
-interface Props {
- children: JSXElement
- background?: string
- color?: string
- border?: string
-}
-
-export default (props: Props) => {
- return (
- <>
-
-
- {props.children}
-
-
-
-
-
- {props.children}
-
-
- >
- )
-}
diff --git a/fwt/styles/Modal.sass b/fwt/styles/Modal.sass
deleted file mode 100644
index 9f8368d..0000000
--- a/fwt/styles/Modal.sass
+++ /dev/null
@@ -1,20 +0,0 @@
-@use '/src/styles/variables.sass' as vars
-@use 'sass:color'
-
-.modal
- display: flex
- justify-content: center
- align-items: center
- position: fixed
- top: 0
- left: 0
- width: 100%
- height: 100%
- backdrop-filter: blur(20px)
- background-color: rgba(color.adjust(vars.$background, $blackness: 5%), 0.6)
- z-index: 999
-
- &__content
- border-radius: 8px
- padding: 2rem
- position: relative
diff --git a/package.json b/package.json
index ccdf82d..bdb1706 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,6 @@
"astro": "^5.13.8",
"astro-compressor": "^1.1.2",
"astro-purgecss": "^5.3.0",
- "gsap": "^3.13.0",
"lightningcss": "^1.30.1",
"nanostores": "^1.0.1",
"purgecss": "^7.0.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b24571d..c79cc9e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -29,9 +29,6 @@ importers:
astro-purgecss:
specifier: ^5.3.0
version: 5.3.0(astro@5.13.8(@types/node@24.5.2)(lightningcss@1.30.1)(rollup@4.50.1)(sass-embedded@1.92.1)(sass@1.92.1)(typescript@5.8.3))(purgecss@7.0.2)
- gsap:
- specifier: ^3.13.0
- version: 3.13.0
lightningcss:
specifier: ^1.30.1
version: 1.30.1
@@ -1334,9 +1331,6 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- gsap@3.13.0:
- resolution: {integrity: sha512-QL7MJ2WMjm1PHWsoFrAQH/J8wUeqZvMtHO58qdekHpCfhvhSL4gSiz6vJf5EeMP0LOn3ZCprL2ki/gjED8ghVw==}
-
h3@1.15.4:
resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==}
@@ -3669,8 +3663,6 @@ snapshots:
globals@11.12.0: {}
- gsap@3.13.0: {}
-
h3@1.15.4:
dependencies:
cookie-es: 1.2.2
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 6bd36e5..7a4051c 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro'
-import { Button, Logo, Link, Page, Footer, Row, Image, Copyright, Column } from '../../fwt/'
+import { Button, Logo, Link, Page, Footer, Row, Image, Copyright } from '../../fwt/'
import Counter from '../components/Counter/Counter'
import PA1 from '../../fwt/images/pat-alcala.avif'
import PA2 from '../../fwt/images/pat-alcala.webp'
@@ -10,23 +10,21 @@ import PA2 from '../../fwt/images/pat-alcala.webp'
-
-
-
-
+
+
+
- Fast WebApp Template
-
+ Fast WebApp Template
+
-
+
-
-
+