@@ -337,7 +331,6 @@ export async function GET(req: Request) {
);
} catch (err) {
console.log({ err });
-
return new Response("Failed to generate the og image", { status: 500 });
}
}
diff --git a/docs/components/icons.tsx b/docs/components/icons.tsx
index e18e7785..c4627919 100644
--- a/docs/components/icons.tsx
+++ b/docs/components/icons.tsx
@@ -211,4 +211,52 @@ export const Icons = {
/>
),
+ elysia: () => (
+
+ ),
};
diff --git a/docs/components/sidebar-content.tsx b/docs/components/sidebar-content.tsx
index 723509ed..b669264b 100644
--- a/docs/components/sidebar-content.tsx
+++ b/docs/components/sidebar-content.tsx
@@ -563,6 +563,11 @@ export const contents: Content[] = [
icon: Icons.node,
href: "/docs/integrations/node",
},
+ {
+ title: "Elysia",
+ icon: Icons.elysia,
+ href: "/docs/integrations/elysia",
+ },
],
},
{
@@ -588,33 +593,33 @@ export const contents: Content[] = [
title: "Authentication",
group: true,
href: "/docs/plugins/1st-party-plugins",
- icon: LucideAArrowDown,
+ icon: () =>
,
},
{
title: "Two Factor",
- icon: ScanFace,
+ icon: () =>
,
href: "/docs/plugins/2fa",
},
{
title: "Username",
- icon: UserSquare2,
+ icon: () =>
,
href: "/docs/plugins/username",
},
{
title: "Anonymous",
- icon: UserCircle,
+ icon: () =>
,
href: "/docs/plugins/anonymous",
},
{
title: "Phone Number",
- icon: Phone,
+ icon: () =>
,
href: "/docs/plugins/phone-number",
},
{
title: "Magic Link",
href: "/docs/plugins/magic-link",
- icon: Mailbox,
+ icon: () =>
,
},
{
title: "Passkey",
@@ -660,7 +665,7 @@ export const contents: Content[] = [
title: "Authorization",
group: true,
href: "/docs/plugins/1st-party-plugins",
- icon: LucideAArrowDown,
+ icon: () =>
,
},
{
title: "Admin",
@@ -673,17 +678,12 @@ export const contents: Content[] = [
viewBox="0 0 24 24"
>
-
+
@@ -691,19 +691,19 @@ export const contents: Content[] = [
},
{
title: "Organization",
- icon: Users2,
+ icon: () =>
,
href: "/docs/plugins/organization",
},
{
title: "Utility",
group: true,
href: "/docs/plugins/1st-party-plugins",
- icon: LucideAArrowDown,
+ icon: () =>
,
},
{
title: "Bearer",
- icon: Key,
+ icon: () =>
,
href: "/docs/plugins/bearer",
},
],