Skip to content

Commit 30f4402

Browse files
Merge branch 'main' into 1950-Search-bar-UI
2 parents 6c2452b + 0065c1a commit 30f4402

File tree

221 files changed

+6487
-296
lines changed

Some content is hidden

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

221 files changed

+6487
-296
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@appwrite.io/console": "^0.6.4",
3636
"@appwrite.io/pink": "~0.26.0",
3737
"@appwrite.io/pink-icons": "~0.26.0",
38-
"@appwrite.io/repo": "github:appwrite/appwrite#1.6.x",
38+
"@appwrite.io/repo": "github:appwrite/appwrite#1.7.x",
3939
"@eslint/compat": "^1.2.7",
4040
"@eslint/js": "^9.21.0",
4141
"@fingerprintjs/fingerprintjs": "^4.5.1",

pnpm-lock.yaml

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

src/app.css

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090
--animate-enter:
9191
fade-in 0.75s ease-in-out both, blur 0.75s ease-in-out both, up 0.75s ease-in-out both;
9292
--animate-scroll: scroll 60s linear infinite;
93+
--animate-scroll-x: scroll-x var(--speed, 30s) linear infinite var(--direction, forwards);
94+
--animate-scroll-y: scroll-y 60s linear infinite forwards;
95+
9396
--animate-fade-in: fade-in 0.5s ease-in-out both;
9497
--animate-marquee: marquee var(--speed, 30s) linear infinite var(--direction, forwards);
9598
--animate-lighting: lighting 1.25s ease-out forwards;
@@ -199,6 +202,18 @@
199202
}
200203
}
201204

205+
@keyframes scroll-x {
206+
to {
207+
transform: translateX(-100%);
208+
}
209+
}
210+
211+
@keyframes scroll-y {
212+
to {
213+
transform: translateY(-50%);
214+
}
215+
}
216+
202217
/* Fonts */
203218
--font-sans: 'Inter', arial, sans-serif;
204219
--font-mono: 'Fira Code', monospace;
@@ -209,10 +224,10 @@
209224
/* Font sizes */
210225
--text-x-micro: 0.625rem;
211226
--text-x-micro--line-height: 0.875rem;
212-
--text-x-micro--letter-spacing: var(--tracking-tighter);
227+
--text-x-micro--letter-spacing: var(--tracking-loose);
213228
--text-micro: 0.75rem;
214229
--text-micro--line-height: 1rem;
215-
--text-micro--letter-spacing: var(--tracking-tighter);
230+
--text-micro--letter-spacing: var(--tracking-loose);
216231
--text-caption: 0.875rem;
217232
--text-caption--line-height: 1.375rem;
218233
--text-caption--letter-spacing: var(--tracking-tight);
@@ -254,9 +269,9 @@
254269
}
255270

256271
@utility container {
272+
max-width: 75rem;
257273
margin-inline: auto;
258274
padding-inline: 1.25rem;
259-
max-width: 75rem;
260275
}
261276

262277
@utility border-gradient {

src/hooks.server.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ const securityheaders: Handle = async ({ event, resolve }) => {
122122
return response;
123123
};
124124

125-
const bannerRewriter: Handle = async ({ event, resolve }) => {
126-
const response = await resolve(event, {
127-
transformPageChunk: ({ html }) => html.replace('%aw_banner_key%', BANNER_KEY)
128-
});
129-
return response;
130-
};
125+
// const bannerRewriter: Handle = async ({ event, resolve }) => {
126+
// const response = await resolve(event, {
127+
// transformPageChunk: ({ html }) => html.replace('%aw_banner_key%', BANNER_KEY)
128+
// });
129+
// return response;
130+
// };
131131

132132
const initSession: Handle = async ({ event, resolve }) => {
133133
const session = await createInitSessionClient(event.cookies);
@@ -191,4 +191,4 @@ const initSession: Handle = async ({ event, resolve }) => {
191191
return response;
192192
};
193193

194-
export const handle = sequence(redirecter, bannerRewriter, securityheaders, initSession);
194+
export const handle = sequence(redirecter, securityheaders, initSession);

src/icons/optimized/remix.svg

Lines changed: 1 addition & 0 deletions
Loading

src/icons/output/_variables.scss

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,16 @@ $web-icon-play: "\ea29";
4242
$web-icon-plus: "\ea2a";
4343
$web-icon-product-hunt: "\ea2b";
4444
$web-icon-refine: "\ea2c";
45-
$web-icon-rest: "\ea2d";
46-
$web-icon-search: "\ea2e";
47-
$web-icon-sendgrid: "\ea2f";
48-
$web-icon-star: "\ea30";
49-
$web-icon-system: "\ea31";
50-
$web-icon-textmagic: "\ea32";
51-
$web-icon-tiktok: "\ea33";
52-
$web-icon-twitter: "\ea34";
53-
$web-icon-vue: "\ea35";
54-
$web-icon-x: "\ea36";
55-
$web-icon-ycombinator: "\ea37";
56-
$web-icon-youtube: "\ea38";
45+
$web-icon-remix: "\ea2d";
46+
$web-icon-rest: "\ea2e";
47+
$web-icon-search: "\ea2f";
48+
$web-icon-sendgrid: "\ea30";
49+
$web-icon-star: "\ea31";
50+
$web-icon-system: "\ea32";
51+
$web-icon-textmagic: "\ea33";
52+
$web-icon-tiktok: "\ea34";
53+
$web-icon-twitter: "\ea35";
54+
$web-icon-vue: "\ea36";
55+
$web-icon-x: "\ea37";
56+
$web-icon-ycombinator: "\ea38";
57+
$web-icon-youtube: "\ea39";

src/icons/output/info.json

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -263,76 +263,82 @@
263263
"className": "web-icon-refine",
264264
"unicode": ""
265265
},
266-
"rest": {
266+
"remix": {
267267
"encodedCode": "\\ea2d",
268268
"prefix": "web-icon",
269-
"className": "web-icon-rest",
269+
"className": "web-icon-remix",
270270
"unicode": ""
271271
},
272-
"search": {
272+
"rest": {
273273
"encodedCode": "\\ea2e",
274274
"prefix": "web-icon",
275-
"className": "web-icon-search",
275+
"className": "web-icon-rest",
276276
"unicode": ""
277277
},
278-
"sendgrid": {
278+
"search": {
279279
"encodedCode": "\\ea2f",
280280
"prefix": "web-icon",
281-
"className": "web-icon-sendgrid",
281+
"className": "web-icon-search",
282282
"unicode": ""
283283
},
284-
"star": {
284+
"sendgrid": {
285285
"encodedCode": "\\ea30",
286286
"prefix": "web-icon",
287-
"className": "web-icon-star",
287+
"className": "web-icon-sendgrid",
288288
"unicode": ""
289289
},
290-
"system": {
290+
"star": {
291291
"encodedCode": "\\ea31",
292292
"prefix": "web-icon",
293-
"className": "web-icon-system",
293+
"className": "web-icon-star",
294294
"unicode": ""
295295
},
296-
"textmagic": {
296+
"system": {
297297
"encodedCode": "\\ea32",
298298
"prefix": "web-icon",
299-
"className": "web-icon-textmagic",
299+
"className": "web-icon-system",
300300
"unicode": ""
301301
},
302-
"tiktok": {
302+
"textmagic": {
303303
"encodedCode": "\\ea33",
304304
"prefix": "web-icon",
305-
"className": "web-icon-tiktok",
305+
"className": "web-icon-textmagic",
306306
"unicode": ""
307307
},
308-
"twitter": {
308+
"tiktok": {
309309
"encodedCode": "\\ea34",
310310
"prefix": "web-icon",
311-
"className": "web-icon-twitter",
311+
"className": "web-icon-tiktok",
312312
"unicode": ""
313313
},
314-
"vue": {
314+
"twitter": {
315315
"encodedCode": "\\ea35",
316316
"prefix": "web-icon",
317-
"className": "web-icon-vue",
317+
"className": "web-icon-twitter",
318318
"unicode": ""
319319
},
320-
"x": {
320+
"vue": {
321321
"encodedCode": "\\ea36",
322322
"prefix": "web-icon",
323-
"className": "web-icon-x",
323+
"className": "web-icon-vue",
324324
"unicode": ""
325325
},
326-
"ycombinator": {
326+
"x": {
327327
"encodedCode": "\\ea37",
328328
"prefix": "web-icon",
329-
"className": "web-icon-ycombinator",
329+
"className": "web-icon-x",
330330
"unicode": ""
331331
},
332-
"youtube": {
332+
"ycombinator": {
333333
"encodedCode": "\\ea38",
334334
"prefix": "web-icon",
335-
"className": "web-icon-youtube",
335+
"className": "web-icon-ycombinator",
336336
"unicode": ""
337+
},
338+
"youtube": {
339+
"encodedCode": "\\ea39",
340+
"prefix": "web-icon",
341+
"className": "web-icon-youtube",
342+
"unicode": ""
337343
}
338344
}

src/icons/output/web-icon.css

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -152,39 +152,42 @@
152152
.web-icon-refine:before {
153153
content: '\ea2c';
154154
}
155-
.web-icon-rest:before {
155+
.web-icon-remix:before {
156156
content: '\ea2d';
157157
}
158-
.web-icon-search:before {
158+
.web-icon-rest:before {
159159
content: '\ea2e';
160160
}
161-
.web-icon-sendgrid:before {
161+
.web-icon-search:before {
162162
content: '\ea2f';
163163
}
164-
.web-icon-star:before {
164+
.web-icon-sendgrid:before {
165165
content: '\ea30';
166166
}
167-
.web-icon-system:before {
167+
.web-icon-star:before {
168168
content: '\ea31';
169169
}
170-
.web-icon-textmagic:before {
170+
.web-icon-system:before {
171171
content: '\ea32';
172172
}
173-
.web-icon-tiktok:before {
173+
.web-icon-textmagic:before {
174174
content: '\ea33';
175175
}
176-
.web-icon-twitter:before {
176+
.web-icon-tiktok:before {
177177
content: '\ea34';
178178
}
179-
.web-icon-vue:before {
179+
.web-icon-twitter:before {
180180
content: '\ea35';
181181
}
182-
.web-icon-x:before {
182+
.web-icon-vue:before {
183183
content: '\ea36';
184184
}
185-
.web-icon-ycombinator:before {
185+
.web-icon-x:before {
186186
content: '\ea37';
187187
}
188-
.web-icon-youtube:before {
188+
.web-icon-ycombinator:before {
189189
content: '\ea38';
190190
}
191+
.web-icon-youtube:before {
192+
content: '\ea39';
193+
}

src/icons/output/web-icon.eot

264 Bytes
Binary file not shown.

src/icons/output/web-icon.scss

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,19 @@
6060
.web-icon-plus:before { content: "\ea2a"; }
6161
.web-icon-product-hunt:before { content: "\ea2b"; }
6262
.web-icon-refine:before { content: "\ea2c"; }
63-
.web-icon-rest:before { content: "\ea2d"; }
64-
.web-icon-search:before { content: "\ea2e"; }
65-
.web-icon-sendgrid:before { content: "\ea2f"; }
66-
.web-icon-star:before { content: "\ea30"; }
67-
.web-icon-system:before { content: "\ea31"; }
68-
.web-icon-textmagic:before { content: "\ea32"; }
69-
.web-icon-tiktok:before { content: "\ea33"; }
70-
.web-icon-twitter:before { content: "\ea34"; }
71-
.web-icon-vue:before { content: "\ea35"; }
72-
.web-icon-x:before { content: "\ea36"; }
73-
.web-icon-ycombinator:before { content: "\ea37"; }
74-
.web-icon-youtube:before { content: "\ea38"; }
63+
.web-icon-remix:before { content: "\ea2d"; }
64+
.web-icon-rest:before { content: "\ea2e"; }
65+
.web-icon-search:before { content: "\ea2f"; }
66+
.web-icon-sendgrid:before { content: "\ea30"; }
67+
.web-icon-star:before { content: "\ea31"; }
68+
.web-icon-system:before { content: "\ea32"; }
69+
.web-icon-textmagic:before { content: "\ea33"; }
70+
.web-icon-tiktok:before { content: "\ea34"; }
71+
.web-icon-twitter:before { content: "\ea35"; }
72+
.web-icon-vue:before { content: "\ea36"; }
73+
.web-icon-x:before { content: "\ea37"; }
74+
.web-icon-ycombinator:before { content: "\ea38"; }
75+
.web-icon-youtube:before { content: "\ea39"; }
7576

7677
$web-icon-apple: "\ea01";
7778
$web-icon-appwrite: "\ea02";
@@ -117,15 +118,16 @@ $web-icon-play: "\ea29";
117118
$web-icon-plus: "\ea2a";
118119
$web-icon-product-hunt: "\ea2b";
119120
$web-icon-refine: "\ea2c";
120-
$web-icon-rest: "\ea2d";
121-
$web-icon-search: "\ea2e";
122-
$web-icon-sendgrid: "\ea2f";
123-
$web-icon-star: "\ea30";
124-
$web-icon-system: "\ea31";
125-
$web-icon-textmagic: "\ea32";
126-
$web-icon-tiktok: "\ea33";
127-
$web-icon-twitter: "\ea34";
128-
$web-icon-vue: "\ea35";
129-
$web-icon-x: "\ea36";
130-
$web-icon-ycombinator: "\ea37";
131-
$web-icon-youtube: "\ea38";
121+
$web-icon-remix: "\ea2d";
122+
$web-icon-rest: "\ea2e";
123+
$web-icon-search: "\ea2f";
124+
$web-icon-sendgrid: "\ea30";
125+
$web-icon-star: "\ea31";
126+
$web-icon-system: "\ea32";
127+
$web-icon-textmagic: "\ea33";
128+
$web-icon-tiktok: "\ea34";
129+
$web-icon-twitter: "\ea35";
130+
$web-icon-vue: "\ea36";
131+
$web-icon-x: "\ea37";
132+
$web-icon-ycombinator: "\ea38";
133+
$web-icon-youtube: "\ea39";

0 commit comments

Comments
 (0)