-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathComponentKitsSection.tsx
More file actions
40 lines (38 loc) · 1.94 KB
/
ComponentKitsSection.tsx
File metadata and controls
40 lines (38 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import SectionTitle from "./SectionTitle";
import UIKitCard from "./UIKitCard";
export default function ComponentKitsSection() {
return (
<>
<SectionTitle id="component-kits" title="UI Component Kits" />
<section className="relative flex flex-col w-full max-w-fd-container mx-auto -mt-[1px] border-y border-dashed">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 text-left">
<UIKitCard
url="https://nativewindui.com"
title="NativewindUI"
preview="https://nativewindui.com/og.png"
description="30+ beautiful components and flows that strive for a native look & feel. The perfect starting point for those who need to ship fast and look good doing it."
/>
<UIKitCard
url="https://shadcn-native.moveinready.casa/"
title="shadcn-native"
preview="https://raw.githubusercontent.com/moveinready-casa/shadcn-native/refs/heads/main/assets/cover-image.png"
description="An unoffical shadcn/ui port for react-native built with nativewind, these components are accesible and performant with the same design as shadcn/ui."
/>
<UIKitCard
invertOg
url="https://rnr-docs.vercel.app/"
title="React Native Reusables"
preview="https://rnr-docs.vercel.app/og.png"
description="Build your own component libraries with react-native-reusables. Copy, paste, and tailor the code to suit your specific requirements."
/>
<UIKitCard
url="https://gluestack.io/"
title="gluestack"
preview="https://gluestack.io/images/og-image.png"
description="Comprehensive React and React Native component library for building modern, high-performance web and mobile apps. Copy-paste UI components library & patterns crafted with Tailwind CSS (Nativewind)."
/>
</div>
</section>
</>
);
}