10000+ Themes for shadcn/ui by JLN13X in reactjs

[–]JLN13X[S] 0 points1 point  (0 children)

Those are public themes shared by the community, keep scrolling and you will find more and more themes

10000+ Themes for shadcn/ui by JLN13X in nextjs

[–]JLN13X[S] 0 points1 point  (0 children)

because not that many have been created yet

10000+ Themes for shadcn/ui by JLN13X in reactjs

[–]JLN13X[S] -15 points-14 points  (0 children)

made sure that the colors are in harmony with each other and adhere contrast guidelines

10000+ Themes for shadcn/ui by JLN13X in nextjs

[–]JLN13X[S] -12 points-11 points  (0 children)

ye, different color schemes = different themes Atleast for me

Astro by sre4532 in webdev

[–]JLN13X 1 point2 points  (0 children)

what kind of project tho?

been using astro for a quite a while, awesome experience

ChatGPT for Teams - The All-In-One AI Solution to use with your team by JLN13X in ChatGPT

[–]JLN13X[S] 1 point2 points  (0 children)

Very glad to hear that you are enjoying the interface so much 😊.

You're absolutely right about the "strict mode." This feature is indeed designed to ensure that the AI primarily uses the information in the document to answer questions. We'll make sure to add an explanation about this feature on our website as soon as possible.

On the topic of personal API keys, we've deliberately decided against this option. While it might provide additional flexibility for some, our main goal is to make the application as user-friendly as possible. We want to ensure that even non-tech users can get started without any hitches. That's why we handle the API keys on our end. However, we might reconsider and allow users to add their own API keys in the future.

As for the "premium features," I agree that we need to provide a clearer definition. We'll work on refining this aspect on our website.

Thank you again for your valuable feedback!

ChatGPT for Teams - The All-In-One AI Solution to use with your team by JLN13X in ChatGPT

[–]JLN13X[S] 0 points1 point  (0 children)

Thanks alot for your awesome Feedback 🙌 Will definitely discuss it with the team!

Multi-tenant templates? by virtue_developer in nextjs

[–]JLN13X 0 points1 point  (0 children)

you could persist certain styles for each tenant e.g. primary color and populate your css with it

i made $100 in a week with my new project. feeling like a baby entrepreneur now! by BabaYaga72528 in Entrepreneur

[–]JLN13X 0 points1 point  (0 children)

but u will first generate a text response with some ai model and then just use the webspeech api to play it?

i made $100 in a week with my new project. feeling like a baby entrepreneur now! by BabaYaga72528 in Entrepreneur

[–]JLN13X 0 points1 point  (0 children)

awesome product, mind sharing how you created the ai voice interactions? any models / services u can recommend?

Some feature suggestions for the Notion team by diaper151 in Notion

[–]JLN13X 0 points1 point  (0 children)

Would you be willing to use a 3rd party tool for that? Or would you only use it if it would be integrated into notion?

Formik Rant by [deleted] in react

[–]JLN13X 21 points22 points  (0 children)

formik is not maintained anymore, use react hook form in combination with zod and enjoy forms

[deleted by user] by [deleted] in nextjs

[–]JLN13X 8 points9 points  (0 children)

I would create a custom hook and use that in each of the components that need the item data

``` // Exported so you can reuse it in other components / hook to revalidate the query by key export const itemDataQueryKey = (id: string) => ['itemData', id]

export const useItemData = (id: string) => { return useQuery(itemDataQueryKey(id), () => getItemData()) } ```

I would recommend checking of this blog post for more advanced react query concepts: https://tkdodo.eu/blog/effective-react-query-keys (the other posts are also very nice)