optimize code

This commit is contained in:
2025-10-31 09:37:56 +08:00
parent b74e985770
commit f5bb1ca507
3 changed files with 5 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",

8
package-lock.json generated
View File

@@ -14028,10 +14028,10 @@
}
},
"node_modules/tar": {
"version": "7.5.1",
"resolved": "https://mirrors.cloud.tencent.com/npm/tar/-/tar-7.5.1.tgz",
"integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==",
"license": "ISC",
"version": "7.5.2",
"resolved": "https://mirrors.cloud.tencent.com/npm/tar/-/tar-7.5.2.tgz",
"integrity": "sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==",
"license": "BlueOak-1.0.0",
"optional": true,
"peer": true,
"dependencies": {

View File

@@ -97,7 +97,7 @@ function Explore() {
return (
<div className="bg-[#bbbbbb] w-full flex justify-center items-center flex-col h-52">
<span className="text-[100px] text-white"></span>
<div className="w-0 h-0 border-l-[40px] border-r-[40px] border-t-[30px] border-l-transparent border-r-transparent border-t-white"></div>
<div className="w-0 h-0 border-l-40 border-r-40 border-t-30 border-l-transparent border-r-transparent border-t-white"></div>
</div>
);
}