Remove yuri wallpaper for some reason and attempt to fix emoji won't load issues.

This commit is contained in:
Phapoom Saksri 2024-08-27 21:57:23 +07:00
parent 3c74f3ee8b
commit 4c8f1574ef
13 changed files with 2931 additions and 2 deletions

View file

@ -1,6 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
}
module.exports = nextConfig

2921
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 416 KiB

BIN
public/120913376_p0.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 902 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 578 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 270 KiB

BIN
public/mobile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

View file

@ -8,7 +8,7 @@ body {
color: #ffc6d7fc;
overflow: hidden;
--background-image: url("/113909210_p0.jpg");
--background-image: url("/120913376_p0.png");
background-image: var(--background-image);
background-repeat: no-repeat;
@ -19,7 +19,7 @@ body {
@media only screen and (orientation: portrait) {
body {
--background-image: url("/mobile.jpg");
--background-image: url("/mobile.png");
overflow: auto;
}
}