Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
chronark authored Oct 12, 2024
2 parents 1e8daa4 + 054099f commit a780fe6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
8 changes: 2 additions & 6 deletions apps/www/components/blog/blog-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ export type BlogListProps = {

export function BlogList({ children, className }: BlogListProps) {
// console.log("BlogList children", children);
return (
<ul className={cn("flex flex-col list-disc pl-6 text-white gap-4", className)}>{children}</ul>
);
return <ul className={cn("flex flex-col list-disc pl-6 text-white", className)}>{children}</ul>;
}
export function BlogListNumbered({ children, className }: BlogListProps) {
// console.log("BlogList children", children);
return (
<ol className={cn("flex flex-col list-decimal pl-6 text-white gap-6 ", className)}>
{children}
</ol>
<ol className={cn("flex flex-col list-decimal pl-6 text-white ", className)}>{children}</ol>
);
}
export function BlogListItem({ children, className }: BlogListProps) {
Expand Down
2 changes: 1 addition & 1 deletion apps/www/components/changelog/changelog-grid-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function ChangelogGridItem({ className, changelog }: Props) {
)}
<div
className={cn(
"w-full flex flex-col gap-12 prose-thead:border-none",
"w-full flex flex-col prose-thead:border-none",
"prose-sm md:prose-md prose-strong:text-white/90 prose-code:text-white/80 prose-code:bg-white/10 prose-code:px-2 prose-code:py-1 prose-code:border-white/20 prose-code:rounded-md prose-pre:p-0 prose-pre:m-0 prose-pre:leading-6",
)}
>
Expand Down
7 changes: 1 addition & 6 deletions oss.gg/7_create_a_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,13 @@ Your turn 👇
////////////////////////////

» 04-October-2024 by Harsh Bhat [Flask RBAC route protection using unkey](https://github.com/harshsbhat/unkey-flask.git)

» 04-October-2024 by Nazar Poshtarenko [Time-Sensitive API Keys for Digital Content Access](https://github.com/unrenamed/unkey-pdf-view.git)

» 06-October-2024 by Nazar Poshtarenko [Protect your Rust + Axum API with Unkey](https://github.com/unrenamed/unkey-rust-axum.git)

» 06-October-2024 by Harsh Bhat [Cost Based ratelimiting](https://github.com/harshsbhat/ordox) [Live](https://ordox.vercel.app/)

» 08-October-2024 by Teddy ASSIH [Django Rest Framework + Unkey](https://github.com/Ionfinisher/unkey-django-template)

» 09-October-2024 by Nazar Poshtarenko [Limit Your API Calls with Unkey Usage-Limited Keys](https://github.com/unrenamed/unkey-rust-rocket.git)
» 10-October-2024 by Novin Noori [Protect and Rate Limit Rust + Actix Web API with Unkey](https://github.com/djnovin/unkey-rust-actix)

» 10-October-2024 by Devansh Baghel [Deno Unkey Ratelimit Starter](https://github.com/Devansh-Baghel/deno-unkey-ratelimit-starter)
» 11-October-2024 by Prabin Subedi [Starter template for Unkey Route protecttion in Hono Webframework in Cloudflare workers ](https://github.com/prabincankod/hono-unkey-cflare)

---

0 comments on commit a780fe6

Please sign in to comment.