File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed
Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY = <YOUR_CLERK_PUBLISHABLE_KEY>
2+ CLERK_SECRET_KEY = <YOUR_CLERK_SECRET_KEY>
3+
4+ CLERK_WEBHOOK_SECRET = <YOUR_CLERK_WEBHOOK_SECRET>
5+
6+ NEXT_PUBLIC_CLERK_SIGN_IN_URL = /sign-in
7+ NEXT_PUBLIC_CLERK_SIGN_UP_URL = /sign-up
8+ NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL = /
9+ NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL = /onboarding
10+
11+ NEXT_PUBLIC_TINY_MCE_API_KEY = <YOUR_TINY_MCE_API_KEY>
12+
13+ MONGODB_URL = <YOUR_MONGODB_URL>
14+
15+ NEXT_PUBLIC_SERVER_URL = <YOUR_SERVER_URL>
16+
17+ OPENAI_API_KEY = <YOUR_OPENAI_API_KEY>
18+
19+ RAPID_API_KEY = <YOUR_RAPID_API_KEY>
Original file line number Diff line number Diff line change @@ -47,16 +47,18 @@ const Filters = ({
4747 } ;
4848
4949 return (
50- < div className = "mt-10 flex-wrap gap-3 md:flex" >
51- { filters . map ( ( filter ) => (
50+ < div className = "mt-10 flex flex -wrap-reverse gap-3 md:flex-wrap " >
51+ { filters . map ( ( filter , index ) => (
5252 < Button
5353 key = { filter . value }
5454 onClick = { ( ) => handleTypeClick ( filter . value ) }
5555 className = { `body-medium rounded-lg px-6 py-3 capitalize shadow-none ${
5656 active === filter . value
5757 ? "bg-primary-100 text-primary-500 dark:bg-dark-400 dark:hover:bg-dark-400"
5858 : "bg-light-800 text-light-500 hover:bg-light-800 dark:bg-dark-300 dark:text-light-500 dark:hover:bg-dark-300"
59- } `}
59+ }
60+ ${ index !== filters . length - 1 && "mb-1 mr-1 md:mb-0 md:mr-0" }
61+ ` }
6062 >
6163 { filter . name }
6264 </ Button >
You can’t perform that action at this time.
0 commit comments