We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75f65f commit a629d5fCopy full SHA for a629d5f
.envrc
@@ -1 +1 @@
1
-use flake
+use nix
shell.nix
@@ -0,0 +1,8 @@
+{pkgs ? import <nixpkgs> {}}:
2
+pkgs.mkShell {
3
+ packages = with pkgs; [
4
+ bun
5
+ nodejs
6
+ deno
7
+ ];
8
+}
src/components/GlobalFooter.tsx
@@ -1,7 +1,6 @@
import clsx from "clsx";
import React from "react";
import { Link } from "gatsby";
-import { FaXTwitter } from "react-icons/fa6";
import ActionButton from "./ActionButton";
import Logo from "./Logo";
0 commit comments