mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
fix fumadocs theme
This commit is contained in:
@@ -1,39 +1,39 @@
|
||||
import { Cards, Card } from "fumadocs-ui/components/card";
|
||||
import { Database, Package, Lock, Globe, Server, Cable } from "lucide-react";
|
||||
import { Card, Cards } from "fumadocs-ui/components/card";
|
||||
import { Cable, Database, Globe, Lock, Package, Server } from "lucide-react";
|
||||
|
||||
export default function Features() {
|
||||
return (
|
||||
<Cards>
|
||||
<Card
|
||||
icon={<Globe />}
|
||||
title='Frontend'
|
||||
description='Choose between Tanstack Router, React Router, Expo, Next.js, and more'
|
||||
/>
|
||||
<Card
|
||||
icon={<Server />}
|
||||
title='Flexible Backend'
|
||||
description='Choose between Hono, Elysia, Next.js and Express'
|
||||
/>
|
||||
<Card
|
||||
icon={<Cable />}
|
||||
title='End to end typesafe APIs'
|
||||
description='With the help of tRPC or oRPC'
|
||||
/>
|
||||
<Card
|
||||
icon={<Lock />}
|
||||
title='Authentication'
|
||||
description='With the help of Better Auth'
|
||||
/>
|
||||
<Card
|
||||
icon={<Database />}
|
||||
title='Database Setup'
|
||||
description='Many ORMs and Relational Databases'
|
||||
/>
|
||||
<Card
|
||||
icon={<Package />}
|
||||
title='Addons'
|
||||
description='Add PWA support, desktop apps, documentation, and more'
|
||||
/>
|
||||
</Cards>
|
||||
);
|
||||
return (
|
||||
<Cards>
|
||||
<Card
|
||||
icon={<Globe />}
|
||||
title="Frontend"
|
||||
description="Choose between Tanstack Router, React Router, Expo, Next.js, and more"
|
||||
/>
|
||||
<Card
|
||||
icon={<Server />}
|
||||
title="Flexible Backend"
|
||||
description="Choose between Hono, Elysia, Next.js and Express"
|
||||
/>
|
||||
<Card
|
||||
icon={<Cable />}
|
||||
title="End to end typesafe APIs"
|
||||
description="With the help of tRPC or oRPC"
|
||||
/>
|
||||
<Card
|
||||
icon={<Lock />}
|
||||
title="Authentication"
|
||||
description="With the help of Better Auth"
|
||||
/>
|
||||
<Card
|
||||
icon={<Database />}
|
||||
title="Database Setup"
|
||||
description="Many ORMs and Relational Databases"
|
||||
/>
|
||||
<Card
|
||||
icon={<Package />}
|
||||
title="Addons"
|
||||
description="Add PWA support, desktop apps, documentation, and more"
|
||||
/>
|
||||
</Cards>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user