Skip to content

Commit 7b5b2ca

Browse files
committed
fresh 2 released! 🥳
1 parent e632f67 commit 7b5b2ca

16 files changed

Lines changed: 681 additions & 1540 deletions

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ Start the project in development mode:
3131
deno task dev
3232
```
3333

34-
## About
35-
36-
Airport is developed with ❤️ by [Roscoe](https://bsky.app/profile/knotbin.com)
37-
for [Spark](https://sprk.so), a new short-video platform for AT Protocol.
38-
3934
## Contributing
4035

4136
We welcome contributions! Please feel free to submit a Pull Request. Please only

components/Button.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,9 @@ export function Button(props: Props) {
4343

4444
const baseStyles = "airport-sign flex items-center [transition:none]";
4545
const paddingStyles = condensed ? "px-2 py-1.5" : "px-3 py-2 sm:px-6 sm:py-3";
46-
const transformStyles =
47-
"translate-y-0 hover:translate-y-1 hover:transition-transform hover:duration-200 hover:ease-in-out";
4846
const colorStyles = {
49-
blue:
50-
"bg-gradient-to-r from-blue-400 to-blue-500 text-white hover:from-blue-500 hover:to-blue-600",
51-
amber:
52-
"bg-gradient-to-r from-amber-400 to-amber-500 text-slate-900 hover:from-amber-500 hover:to-amber-600",
47+
blue: "bg-blue-500 text-white hover:bg-blue-500",
48+
amber: "bg-amber-400 text-slate-900 hover:bg-amber-500",
5349
};
5450

5551
const buttonContent = (
@@ -74,7 +70,7 @@ export function Button(props: Props) {
7470
</>
7571
);
7672

77-
const buttonStyles = `${baseStyles} ${paddingStyles} ${transformStyles} ${
73+
const buttonStyles = `${baseStyles} ${paddingStyles} ${
7874
colorStyles[color]
7975
} ${className}`;
8076

deno.json

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,16 @@
3131
"**/tests/**"
3232
],
3333
"imports": {
34-
"@atproto/api": "npm:@atproto/api@^0.15.6",
34+
"@atproto/api": "npm:@atproto/api@^0.15.27",
3535
"@bigmoves/atproto-oauth-client": "jsr:@bigmoves/atproto-oauth-client@^0.2.0",
3636
"@knotbin/posthog-fresh": "jsr:@knotbin/posthog-fresh@^0.1.3",
37-
"fresh": "jsr:@fresh/core@2.0.0-alpha.33",
38-
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@0.0.1-alpha.7",
39-
"posthog-js": "npm:posthog-js@1.120.0",
40-
"preact": "npm:preact@^10.26.6",
41-
"@preact/signals": "npm:@preact/signals@^2.0.4",
42-
"tailwindcss": "npm:tailwindcss@3.4.3",
37+
"fresh": "jsr:@fresh/core@^2.0.0",
38+
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@1.0.0",
39+
"preact": "npm:preact@^10.27.1",
40+
"@preact/signals": "npm:@preact/signals@^2.3.1",
4341
"@atproto/crypto": "npm:@atproto/crypto@^0.4.4",
44-
"@did-plc/lib": "npm:@did-plc/lib@^0.0.4"
42+
"@did-plc/lib": "npm:@did-plc/lib@^0.0.4",
43+
"tailwindcss": "npm:tailwindcss@^4.1.13"
4544
},
4645
"compilerOptions": {
4746
"lib": [
@@ -58,7 +57,15 @@
5857
"source",
5958
"body",
6059
"html",
61-
"head"
60+
"head",
61+
"title",
62+
"meta",
63+
"script",
64+
"link",
65+
"style",
66+
"base",
67+
"noscript",
68+
"template"
6269
],
6370
"types": [
6471
"node"

0 commit comments

Comments
 (0)