"use client"; import { CheckIcon, Globe2Icon, PlugIcon, PlugZap2Icon, Plus, RabbitIcon, ShieldCheckIcon, Webhook, XIcon, } from "lucide-react"; import { GitHubLogoIcon, LockClosedIcon } from "@radix-ui/react-icons"; import Link from "next/link"; import { Button } from "./ui/button"; import React, { useState } from "react"; import { TechStackDisplay } from "./display-techstack"; import { Ripple } from "./ripple"; import { GithubStat } from "./github-stat"; export default function Features({ stars }: { stars: string | null }) { return (

Framework Agnostic{" "}

Supports popular frameworks

Supports your favorite frontend, backend and meta frameworks, including React, Vue, Svelte, Astro, Solid, Next.js, Nuxt, Hono, and more{" "} Learn more

Authentication

Email & Password Authentication

Builtin support for email and password authentication, with secure password hashing and account management features{" "} Learn more

Social Sign-on

Support multiple OAuth providers.

Allow users to sign in with their accounts, including GitHub, Google, Discord, Twitter, and more.{" "} Learn more

Two Factor

Two Factor Authentication

With our built-in two factor authentication plugin, you can add an extra layer of security to your account.{" "} Learn more

Organization & Access Control{" "}

Gain and manage access.

Manage users and their access to resources within your application.{" "} Learn more

Plugin Ecosystem{" "}

Extend your application with plugins

Enhance your application with our official plugins and those created by the community.{" "} Learn more

Own your auth

Roll your own auth with confidence in minutes!

); }