Zougui
TTCTheo's Typesafe Cult
•Created by jakeleventhal on 4/6/2025 in #questions
HeroUI or shadcn
If MUI does the job and you have no issues or anything then you don't need to migrate from it.
If you have issues with MUI that you won't have with heroui or shadcn you gotta weigh them, make a list of pros and cons of keeping it, pros and cons of migrating from it, and then decide if the issues you have with it are worth the effort
6 replies
TTCTheo's Typesafe Cult
•Created by choco on 3/27/2025 in #questions
Does anyone know how people animate their app usage like that?
with a video editor most likely
7 replies
TTCTheo's Typesafe Cult
•Created by alextana on 3/24/2025 in #questions
user data encryption
what you're looking for is an asymmetrical encryption algorithm. as for the details to implement that is above my paygrade. I haven't done it in a long time
11 replies
TTCTheo's Typesafe Cult
•Created by ChrisEvans on 2/12/2025 in #questions
What's the difference between the `api` exported from react.tsx and the `api` from server.ts?
yes
9 replies
TTCTheo's Typesafe Cult
•Created by ChrisEvans on 2/12/2025 in #questions
What's the difference between the `api` exported from react.tsx and the `api` from server.ts?
if it's an async component, like one that is exported from a
page.tsx
in the app folder, yes. do keep in mind that the functions in the api exported from server.tsx are async.
if your component is not async then no, you'll have to use the api from react.tsx9 replies
TTCTheo's Typesafe Cult
•Created by ChrisEvans on 2/12/2025 in #questions
What's the difference between the `api` exported from react.tsx and the `api` from server.ts?
the api from react.tsx is meant for the client with the tanstack-query bindings while the api exported from server.tsx is meant for use within the server only (async components and server functions)
9 replies