mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
* Next.js * ID * Punctuation, code * SQLite * Capitalization * Various corrections in "JWT"
50 lines
985 B
TypeScript
50 lines
985 B
TypeScript
import { Icons } from "./icons";
|
|
type TechStackIconType = {
|
|
[key: string]: {
|
|
name: string;
|
|
icon: any;
|
|
};
|
|
};
|
|
export const techStackIcons: TechStackIconType = {
|
|
nextJs: {
|
|
name: "Next.js",
|
|
icon: <Icons.nextJS className="w-10 h-10" />,
|
|
},
|
|
nuxt: {
|
|
name: "Nuxt",
|
|
icon: <Icons.nuxt className="w-10 h-10" />,
|
|
},
|
|
svelteKit: {
|
|
name: "SvelteKit",
|
|
icon: <Icons.svelteKit className="w-10 h-10" />,
|
|
},
|
|
solidStart: {
|
|
name: "SolidStart",
|
|
icon: <Icons.solidStart className="w-10 h-10" />,
|
|
},
|
|
react: {
|
|
name: "React",
|
|
icon: <Icons.react className="w-10 h-10" />,
|
|
},
|
|
hono: {
|
|
name: "Hono",
|
|
icon: <Icons.hono className="w-10 h-10" />,
|
|
},
|
|
astro: {
|
|
name: "Astro",
|
|
icon: <Icons.astro className="w-10 h-10" />,
|
|
},
|
|
tanstack: {
|
|
name: "TanStack Start",
|
|
icon: <Icons.tanstack className="w-10 h-10" />,
|
|
},
|
|
expo: {
|
|
name: "Expo",
|
|
icon: <Icons.expo className="w-10 h-10" />,
|
|
},
|
|
nitro: {
|
|
name: "Nitro",
|
|
icon: <Icons.nitro className="w-10 h-10" />,
|
|
},
|
|
};
|