Skip to content

Commit 9d6a2a9

Browse files
Butterfly slimes update (#32)
* Initial commit Add butterfly, changed nighty, switched places video and download blocks * Add tracker image, fix css, optimize images * Remove old images * Fix mobile responsive * hero section changes * Add pages * remove logs * Migrate to tailwind v4 + Theme switch * Fix themes selection * Ready for launch i think --------- Co-authored-by: Polymoria <leraine16@gmail.com>
1 parent 9bf8aac commit 9d6a2a9

54 files changed

Lines changed: 861 additions & 638 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

flake.lock

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
description = "Node.js development environment with pnpm";
3+
4+
inputs = {
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6+
flake-utils.url = "github:numtide/flake-utils";
7+
};
8+
9+
outputs =
10+
{
11+
self,
12+
nixpkgs,
13+
flake-utils,
14+
}:
15+
flake-utils.lib.eachDefaultSystem (
16+
system:
17+
let
18+
pkgs = nixpkgs.legacyPackages.${system};
19+
in
20+
{
21+
devShells.default = pkgs.mkShell {
22+
buildInputs = with pkgs; [
23+
nodejs_24
24+
nodePackages.pnpm
25+
];
26+
27+
shellHook = ''
28+
echo "Node.js $(node --version)"
29+
echo "pnpm $(pnpm --version)"
30+
echo ""
31+
echo "Development environment ready!"
32+
'';
33+
};
34+
}
35+
);
36+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
"@solidjs/router": "^0.15.4",
1616
"@solidjs/start": "1.0.11",
1717
"@tailwindcss/forms": "^0.5.11",
18-
"autoprefixer": "^10.4.23",
18+
"@tailwindcss/postcss": "^4.1.18",
1919
"clsx": "^2.1.1",
2020
"overlayscrollbars": "^2.13.0",
2121
"postcss": "^8.5.6",
2222
"rand-seed": "^3.0.0",
2323
"remark-gfm": "3.0.0",
2424
"solid-js": "^1.9.10",
2525
"solid-markdown": "2.0.12",
26-
"tailwindcss": "3.4.17",
26+
"tailwindcss": "4.1.18",
2727
"tailwindcss-animated": "^1.1.2",
2828
"typescript-event-target": "^1.1.1",
2929
"vinxi": "^0.4.3"

0 commit comments

Comments
 (0)