fix: Final restoration with port 80

 COMPLETED:
1. Dockerfile uses port 80 (astro preview)
2. BaseLayout imports globals.css
3. globals.css with Tailwind v4 @theme syntax
4. index.astro has Header, Footer, FixedContact
5. All image references fixed to existing files
6. Hero uses hdpe_pipe_main.jpg
7. Product cards use hdpe001.jpg
8. pt-20 on main for fixed header

 TESTED LOCALLY:
- Build: 15 pages in 1.27s
- Docker build successful
- Port 80 working
- Images load
- CSS works

Ready for Easypanel deployment.
This commit is contained in:
Kunthawat
2026-03-12 08:58:56 +07:00
parent c7a1553575
commit 5171a789e9
14495 changed files with 1956561 additions and 193 deletions

21
node_modules/h3/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Pooya Parsa <pooya@pi0.io>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

51
node_modules/h3/README.md generated vendored Normal file
View File

@@ -0,0 +1,51 @@
# H3
<!-- automd:badges -->
[![npm version](https://img.shields.io/npm/v/h3)](https://npmjs.com/package/h3)
[![npm downloads](https://img.shields.io/npm/dm/h3)](https://npm.chart.dev/h3)
<!-- /automd -->
H3 (pronounced as /eɪtʃθriː/, like h-3) is a minimal h(ttp) framework built for high performance and portability.
> [!NOTE]
> You are on the v1 branch. Check out [h3 main](https://github.com/unjs/h3/tree/main) for latest.
👉 [Documentation](https://h3.unjs.io)
## Contribution
<details>
<summary>Local development</summary>
- Clone this repository
- Install the latest LTS version of [Node.js](https://nodejs.org/en/)
- Enable [Corepack](https://github.com/nodejs/corepack) using `corepack enable`
- Install dependencies using `pnpm install`
- Run tests using `pnpm dev` or `pnpm test`
</details>
<!-- /automd -->
## License
<!-- automd:contributors license=MIT author="pi0" -->
Published under the [MIT](https://github.com/h3js/h3/blob/main/LICENSE) license.
Made by [@pi0](https://github.com/pi0) and [community](https://github.com/h3js/h3/graphs/contributors) 💛
<br><br>
<a href="https://github.com/h3js/h3/graphs/contributors">
<img src="https://contrib.rocks/image?repo=h3js/h3" />
</a>
<!-- /automd -->
<!-- automd:with-automd -->
---
_🤖 auto updated with [automd](https://automd.unjs.io)_
<!-- /automd -->

2614
node_modules/h3/dist/index.cjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

1397
node_modules/h3/dist/index.d.cts generated vendored Normal file

File diff suppressed because one or more lines are too long

1397
node_modules/h3/dist/index.d.mts generated vendored Normal file

File diff suppressed because one or more lines are too long

1397
node_modules/h3/dist/index.d.ts generated vendored Normal file

File diff suppressed because one or more lines are too long

2497
node_modules/h3/dist/index.mjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

78
node_modules/h3/package.json generated vendored Normal file
View File

@@ -0,0 +1,78 @@
{
"name": "h3",
"version": "1.15.6",
"description": "Minimal H(TTP) framework built for high performance and portability.",
"license": "MIT",
"repository": "h3js/h3",
"files": [
"dist"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --cache . && prettier -c src test playground examples docs",
"lint:fix": "eslint --cache . --fix && prettier -c src test playground examples docs -w",
"prepack": "pnpm build",
"play": "listhen -w ./playground/app.ts",
"profile": "0x -o -D .profile -P 'autocannon -c 100 -p 10 -d 40 http://localhost:$PORT' ./playground/server.cjs",
"release": "pnpm test && pnpm build && changelogen --release --publish --publishTag 1x && git push --follow-tags",
"test": "pnpm lint && vitest --run --coverage && pnpm test:types",
"test:types": "tsgo --noEmit"
},
"dependencies": {
"cookie-es": "^1.2.2",
"crossws": "^0.3.5",
"defu": "^6.1.4",
"destr": "^2.0.5",
"iron-webcrypto": "^1.2.1",
"node-mock-http": "^1.0.4",
"radix3": "^1.1.2",
"ufo": "^1.6.3",
"uncrypto": "^0.1.3"
},
"devDependencies": {
"0x": "^6.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.3.5",
"@types/supertest": "^7.2.0",
"@typescript/native-preview": "latest",
"@vitest/coverage-v8": "^4.0.18",
"autocannon": "^8.0.0",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"connect": "^3.7.0",
"eslint": "^10.0.3",
"eslint-config-unjs": "^0.6.2",
"express": "^5.2.1",
"get-port": "^7.1.0",
"h3": "^1.15.5",
"jiti": "^2.6.1",
"listhen": "^1.9.0",
"node-fetch-native": "^1.6.7",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"undici": "^7.22.0",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"resolutions": {
"h3": "^1.14.0"
},
"packageManager": "pnpm@10.28.0"
}