text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
"use client";
import { stagger, useAnimate } from "framer-motion";
import React, { useState } from "react";
export const SkeletonTwo = () => {
const [scope, animate] = useAnimate();
const [animating, setAnimating] = useState<boolean>(false);
const handleAnimation = async () => {
if (animating) return;
... | synth-ui | components/marketing/skeletons/second.tsx | TypeScript | d880a559bbfcd6140ae29d6ab06134d5317be34c8684bbf272ed542ee5027185 | 0 | 651 |
"use client";
import React, { useState } from "react";
import { Switch } from "@/components/ui/switch";
import { MoreHorizontalIcon, PlusSignIcon } from "hugeicons-react";
export const SkeletonThree = () => {
return (
<div className="group mx-auto mt-10 h-full w-full rounded-md border bg-white shadow-2xl dark:bg... | synth-ui | components/marketing/skeletons/third.tsx | TypeScript | e4dd78a79d886da150502379cfbfab57fc4db036635aa4a598a119c554cf742c | 0 | 658 |
"use client";
import * as React from "react";
import * as AvatarPrimitive from "@radix-ui/react-avatar";
import { cn } from "@/lib/utils";
const Avatar = React.forwardRef<
React.ElementRef<typeof AvatarPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
>(({ className, ...props }, ref) =... | synth-ui | components/ui/avatar.tsx | TypeScript | e2b6f731d970cee67cd7ce2b03872c2b6d2e63b7390a62e5384afe14cffa36ff | 0 | 351 |
import * as React from "react";
import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "@/lib/utils";
const badgeVariants = cva(
"inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring... | synth-ui | components/ui/badge.tsx | TypeScript | 81f4ea78729e7d77be773664b4a58c6b714333cec3c92fd82bcbb24136759bb0 | 0 | 270 |
import * as React from "react";
import { Slot } from "@radix-ui/react-slot";
import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "@/lib/utils";
const buttonVariants = cva(
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors fo... | synth-ui | components/ui/button.tsx | TypeScript | a6e92f1d86f9ae021aff8ac5f58384c427775cd56799997242299f49db370944 | 0 | 500 |
"use client";
import * as React from "react";
import { ChevronLeftIcon, ChevronRightIcon } from "@radix-ui/react-icons";
import { DayPicker } from "react-day-picker";
import { cn } from "@/lib/utils";
import { buttonVariants } from "@/components/ui/button";
export type CalendarProps = React.ComponentProps<typeof Day... | synth-ui | components/ui/calendar.tsx | TypeScript | 97580ed8026083f053b40fb648478381b22303caec30e86cd5553053a6cb57b5 | 0 | 820 |
import * as React from "react";
import { cn } from "@/lib/utils";
const Card = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"rounded-xl border bg-card text-card-foreground shadow",
className,
)}... | synth-ui | components/ui/card.tsx | TypeScript | e29fe3e335f3d4c7ea58a81a604d52559ab1805ebe077807fc8b8e6b4db453e8 | 0 | 511 |
"use client";
import * as React from "react";
import * as RechartsPrimitive from "recharts";
import {
NameType,
Payload,
ValueType,
} from "recharts/types/component/DefaultTooltipContent";
import { cn } from "@/lib/utils";
// Format: { THEME_NAME: CSS_SELECTOR }
const THEMES = { light: "", dark: ".dark" } as c... | synth-ui | components/ui/chart.tsx | TypeScript | 0b2c1fa6c76fb35ea1f6dfc6804aa317a2b719f3056f5b269cc94cac7e60c555 | 0 | 896 |
"),
}}
/>
);
};
const ChartTooltip = RechartsPrimitive.Tooltip;
const ChartTooltipContent = React.forwardRef<
HTMLDivElement,
React.ComponentProps<typeof RechartsPrimitive.Tooltip> &
React.ComponentProps<"div"> & {
hideLabel?: boolean;
hideIndicator?: boolean;
indicator?: "line" ... | synth-ui | components/ui/chart.tsx | TypeScript | 84d858a1c1d02bc67751cd4da104be4e7dca34cfa59062f031efabe4be09a090 | 1 | 896 |
between leading-none",
nestLabel ? "items-end" : "items-center",
)}
>
<div className="grid gap-1.5">
{nestLabel ? tooltipLabel : null}
<span className="text-muted-foreground">
... | synth-ui | components/ui/chart.tsx | TypeScript | 69c9e0b3d9449ed6a10d97139f6720a5c4e61183905f345f552e011baa5181b4 | 2 | 707 |
// Inspired by Chatbot-UI and modified to fit the needs of this project
// @see https://github.com/mckaywrigley/chatbot-ui/blob/main/components/Markdown/CodeBlock.tsx
"use client";
import { FC, memo, useEffect } from "react";
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
import {
coldarkDar... | synth-ui | components/ui/codeblock.tsx | TypeScript | daf150c13edb38689da0c7a9189c0956cba0c87b07cae724bb720e81b4e2944c | 0 | 896 |
click();
document.body.removeChild(link);
URL.revokeObjectURL(url);
};
return (
<div
className={cn(
"codeblock w-full overflow-hidden font-sans",
!raw && "rounded-lg border",
)}
>
{!raw && (
<div className="flex items-center justify-between bg-secondary p-2... | synth-ui | components/ui/codeblock.tsx | TypeScript | 833b3c53919e62ef5b63a7e1fee20efb5020beb14cc95095276975c1ae94408e | 1 | 411 |
forwardRef<
React.ElementRef<typeof DialogPrimitive.Title>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Title
ref={ref}
className={cn(
"text-lg font-semibold leading-none tracking-tight",
className,
)}
{...props}
... | synth-ui | components/ui/dialog.tsx | TypeScript | f1eb74680aaaf69e8027ee75e2bda81d5a37742385c696f6e616ce3fe04d4750 | 1 | 208 |
"use client";
import * as React from "react";
import { Drawer as DrawerPrimitive } from "vaul";
import { cn } from "@/lib/utils";
const Drawer = ({
shouldScaleBackground = true,
...props
}: React.ComponentProps<typeof DrawerPrimitive.Root>) => (
<DrawerPrimitive.Root
shouldScaleBackground={shouldScaleBackg... | synth-ui | components/ui/drawer.tsx | TypeScript | d38a5c9868123da417bd1629e843c70104a9899c71d6a9a929b5db6925663ec6 | 0 | 726 |
("ml-auto text-xs tracking-widest opacity-60", className)}
{...props}
/>
);
};
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
export {
DropdownMenu,
DropdownMenuTrigger,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuCheckboxItem,
DropdownMenuRadioItem,
DropdownMenuLabel,
Dr... | synth-ui | components/ui/dropdown-menu.tsx | TypeScript | 8c1b2739e5290b49b71f757e5877ca72d9e2b0b14c0d8244d1efbc3e5c4ea91f | 2 | 73 |
import { cn } from "@/lib/utils";
export function IconOpenAI({
className,
...props
}: React.ComponentProps<"svg">) {
return (
<svg
fill="currentColor"
viewBox="0 0 24 24"
role="img"
xmlns="http://www.w3.org/2000/svg"
className={cn("size-4", className)}
{...props}
>
... | synth-ui | components/ui/icons.tsx | TypeScript | 6b75651d34819a388fa176289854cb94b0318d7d052d5a5fdd89ad40ab8c1294 | 0 | 588 |
"use client";
import { cn } from "@/lib/utils";
import React, { useEffect, useState } from "react";
export const InfiniteMovingCards = ({
direction = "left",
speed = "fast",
pauseOnHover = true,
children,
}: {
direction?: "left" | "right";
speed?: "fast" | "normal" | "slow";
pauseOnHover?: boolean;
ch... | synth-ui | components/ui/infinite-moving-cards.tsx | TypeScript | 312adf98ae82224800d5ee8f24d720fd0453423e755891fa132488d31da854a4 | 0 | 581 |
import * as React from "react";
import { cn } from "@/lib/utils";
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
return (
<input
type={type}
classN... | synth-ui | components/ui/input.tsx | TypeScript | 24475a7d14f1637eae211a0c806eb1b9045e7220d2fa07abe473f78a9fa0c226 | 0 | 213 |
"use client";
import * as React from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import { cn } from "@/lib/utils";
const Popover = PopoverPrimitive.Root;
const PopoverTrigger = PopoverPrimitive.Trigger;
const PopoverAnchor = PopoverPrimitive.Anchor;
const PopoverContent = React.forwardRe... | synth-ui | components/ui/popover.tsx | TypeScript | 2842531324582caeef8f01e0610a0b7fcd2f145db15c51da0dce744672ec9dfa | 0 | 360 |
"use client";
import React from "react";
import { cn } from "@/lib/utils";
interface PulsatingButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
pulseColor?: string;
duration?: string;
}
export default function PulsatingButton({
className,
children,
pulseColor = "#0096ff",
duration = ... | synth-ui | components/ui/pulsating-button.tsx | TypeScript | bc9c9e3d865433e0a049b0ab8b8073bcae4813c64862332c67f3a3d1fcc890df | 0 | 246 |
"use client";
import { DragHandleDots2Icon } from "@radix-ui/react-icons";
import * as ResizablePrimitive from "react-resizable-panels";
import { cn } from "@/lib/utils";
const ResizablePanelGroup = ({
className,
...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => (
<ResizablePrimitive.P... | synth-ui | components/ui/resizable.tsx | TypeScript | 0b43d6ec5678f5fed22649c207f256f8dd114e34664267f383fdb6a94adcf25c | 0 | 477 |
"use client";
import * as React from "react";
import {
CaretSortIcon,
CheckIcon,
ChevronDownIcon,
ChevronUpIcon,
} from "@radix-ui/react-icons";
import * as SelectPrimitive from "@radix-ui/react-select";
import { cn } from "@/lib/utils";
const Select = SelectPrimitive.Root;
const SelectGroup = SelectPrimiti... | synth-ui | components/ui/select.tsx | TypeScript | 1391f3888673d50e3644cf740376be94bc2cae563ce0fd6e79aff37a698ccc02 | 0 | 896 |
1",
className,
)}
position={position}
{...props}
>
<SelectScrollUpButton />
<SelectPrimitive.Viewport
className={cn(
"p-1",
position === "popper" &&
"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"... | synth-ui | components/ui/select.tsx | TypeScript | 5dfc27d535d96a771618eced2af6392b184f07140010dbe593acfaa6adabed31 | 1 | 568 |
"use client";
import { cn } from "@/lib/utils";
import Link, { LinkProps } from "next/link";
import React, { useState, createContext, useContext } from "react";
import { AnimatePresence, motion } from "framer-motion";
import { Cancel01Icon, Menu01Icon } from "hugeicons-react";
interface Links {
label: string;
href... | synth-ui | components/ui/sidebar.tsx | TypeScript | b77537032f0547fa80f16b3e7eb3128d5f1c6057feb5bc66f6c00deb6a125be9 | 0 | 896 |
: 0, opacity: 1 }}
exit={{ x: "-100%", opacity: 0 }}
transition={{
duration: 0.3,
ease: "easeInOut",
}}
className={cn(
"fixed inset-0 z-[100] flex h-full w-full flex-col justify-between bg-red-500",
c... | synth-ui | components/ui/sidebar.tsx | TypeScript | 6fc137ed59d4275cd39d7a62da0a7fcff9ca993a0260a575c017a44b47f1a1c8 | 1 | 371 |
"use client";
import * as React from "react";
import * as SwitchPrimitives from "@radix-ui/react-switch";
import { cn } from "@/lib/utils";
const Switch = React.forwardRef<
React.ElementRef<typeof SwitchPrimitives.Root>,
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
>(({ className, ...props }, ref... | synth-ui | components/ui/switch.tsx | TypeScript | d7d4cc9ea06bc0efd8a18a5e48256626f1d3de287ced67c52c354fbd7a8bf378 | 0 | 314 |
"use client";
import * as React from "react";
import * as TabsPrimitive from "@radix-ui/react-tabs";
import { cn } from "@/lib/utils";
const Tabs = TabsPrimitive.Root;
const TabsList = React.forwardRef<
React.ElementRef<typeof TabsPrimitive.List>,
React.ComponentPropsWithoutRef<typeof TabsPrimitive.List>
>(({ c... | synth-ui | components/ui/tabs.tsx | TypeScript | f3e9beef89868a0aeee34727a388c93ff8ad555a54ef5c885dd800ada03336f0 | 0 | 488 |
import * as React from "react";
import { cn } from "@/lib/utils";
export interface TextareaProps
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
({ className, ...props }, ref) => {
return (
<textarea
className={... | synth-ui | components/ui/textarea.tsx | TypeScript | 1257ce7d430a67a7e384e31abc6dd7088e544c01d00489f64ec2bf5790a9d9c7 | 0 | 183 |
"use client";
import * as React from "react";
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
import { cn } from "@/lib/utils";
const TooltipProvider = TooltipPrimitive.Provider;
const Tooltip = TooltipPrimitive.Root;
const TooltipTrigger = TooltipPrimitive.Trigger;
const TooltipContent = React.forwa... | synth-ui | components/ui/tooltip.tsx | TypeScript | d2b07bac3a1ea75783428b1dfc9422db0206cfd577bc65e43b84036dc5330b34 | 0 | 323 |
"use server";
import { revalidatePath } from "next/cache";
import { redirect } from "next/navigation";
import { kv } from "@vercel/kv";
import { type Chat } from "@/lib/types";
import { currentUser } from "@clerk/nextjs/server";
export async function getChats(userId?: string | null) {
const user = await currentUse... | synth-ui | lib/actions/chat.ts | TypeScript | 626f9e8cf6c6021a1f3a7e9ae775ebf2f2956c997296a323a39d8c2fce33d2bd | 0 | 896 |
const chat = await kv.hgetall<Chat>(`chat:${id}`);
if (!chat || chat.userId !== user.id) {
return {
error: "Something went wrong",
};
}
const payload = {
...chat,
sharePath: `/share/${chat.id}`,
};
await kv.hmset(`chat:${chat.id}`, payload);
return payload;
}
export async function... | synth-ui | lib/actions/chat.ts | TypeScript | 73f94b75073c229c98ce55e42857a08b7bf1b9b81109ecf9ab7d0197957c4716 | 1 | 394 |
export * from "@/lib/ai/agents/component/generation/component-specification";
export * from "@/lib/ai/agents/component/generation/component-abstract";
export * from "@/lib/ai/agents/component/generation/component-generator";
export * from "@/lib/ai/agents/component/generation/component-summarizer";
export * from "@/lib... | synth-ui | lib/ai/agents/index.tsx | TypeScript | ed4991e8aaae0bf1d2941e8221bba37eabb38dda11bc35185fc42f75562a3e8c | 0 | 221 |
import { CoreMessage, generateObject } from "ai";
import { LanguageSchema } from "@/lib/schema/language";
import { getModel } from "@/lib/utils/registry";
export async function languageIdentifier(prompt: string) {
try {
const result = await generateObject({
model: getModel(),
system: `You are a langu... | synth-ui | lib/ai/agents/language-identifier.tsx | TypeScript | 75633d870147e22d4180f3eb3a9496316ef46d152a3fe82c43ba151f0c0e3010 | 0 | 191 |
import { createStreamableUI, createStreamableValue } from "ai/rsc";
import { CoreMessage, streamText } from "ai";
import { getModel } from "@/lib/utils/registry";
import { BotMessage, PlainMessage } from "@/components/chat-message";
import { LLMSelection } from "@/lib/types";
export interface StreamResponse {
respon... | synth-ui | lib/ai/agents/streamingAgent.tsx | TypeScript | d6ee8b76025d4d59879e61165609f0118e99d946205f5cc90848cf760e08889a | 0 | 399 |
import { CoreMessage, generateObject } from "ai";
import { nextActionSchema } from "@/lib/schema/next-action";
import { getModel } from "@/lib/utils/registry";
export async function taskManager(messages: CoreMessage[], language: string) {
try {
const result = await generateObject({
model: getModel(),
... | synth-ui | lib/ai/agents/task-manager.tsx | TypeScript | 12b818523e7a3bac0cb8c0880d55500d109f0613892eed7a520c88e160f3a252 | 0 | 324 |
import { streamText } from "ai";
import { getModel } from "@/lib/utils/registry";
const SYSTEM_PROMPT = `As an AI specializing in generating catchy and relevant titles for React UI components and design patterns, your task is to create a fitting, good-sounding title based on the given query or conversation context.
F... | synth-ui | lib/ai/agents/title-generator.tsx | TypeScript | 3e4f0a5538ff3bfbe7736931462be5d4b679151c77c4495134d51b6fff70ad16 | 0 | 335 |
import { createStreamableUI } from "ai/rsc";
import { CoreMessage } from "ai";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection, UILibrary } from "@/lib/types";
export async function componentAbstract(
uiStream: ReturnType<typeof createStreamableUI>,
messages: ... | synth-ui | lib/ai/agents/component/generation/component-abstract.tsx | TypeScript | 41e0b5da553bd8e8b9402be147fe4155d509cfdad3ec6f07631c1ef56dc0f333 | 0 | 193 |
import { ComponentSpecificationSchema } from "@/lib/schema/component/specification";
import { createStreamableUI, createStreamableValue } from "ai/rsc";
import { StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { streamText } from "ai";
import { camelCaseToSpaces } from "@/lib/utils";
import { getModel } ... | synth-ui | lib/ai/agents/component/generation/component-generator.tsx | TypeScript | 5ac8147078e5ec0ba38abdb3f824e97d96d0843340c34a11b515e1a8bd43b16c | 0 | 896 |
,
})
.then(async (result) => {
for await (const text of result.textStream) {
if (text) {
fullResponse = text;
streamableAnswer.update(fullResponse);
}
}
})
.catch((err) => {
hasError = true;
fullResponse = "Error: " + err.... | synth-ui | lib/ai/agents/component/generation/component-generator.tsx | TypeScript | c2d8da217396688a002091b5e8c74f5cabf08d70eb5b053aa25645c9ddf684c8 | 1 | 145 |
import {
ComponentSpecificationSchema,
PartialComponentSpecificationSchema,
getComponentSpecificationSchema,
} from "@/lib/schema/component/specification";
import { getModel } from "@/lib/utils/registry";
import { CoreMessage, streamObject } from "ai";
import { createStreamableValue } from "ai/rsc";
import { LLMS... | synth-ui | lib/ai/agents/component/generation/component-specification.tsx | TypeScript | 2aea6d9f5a1507385d6482a313f2c4adac2d5eb29cc6782d2e6d3a2cf68cb0d2 | 0 | 731 |
import { createStreamableUI } from "ai/rsc";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection, UILibrary } from "@/lib/types";
export async function componentSummarizer(
uiStream: ReturnType<typeof createStreamableUI>,
code: string,
uiLibrary: UILibrary,
la... | synth-ui | lib/ai/agents/component/generation/component-summarizer.tsx | TypeScript | cdd787c97fdf39177f5bf6dc379f3f1f0ca7b7040f967eaa330b1145db1ae728 | 0 | 322 |
import { createStreamableUI } from "ai/rsc";
import { CoreMessage } from "ai";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection } from "@/lib/types";
export async function componentIterationAbstract(
uiStream: ReturnType<typeof createStreamableUI>,
messages: Co... | synth-ui | lib/ai/agents/component/iteration/component-iteration-abstract.tsx | TypeScript | 7de697e5d5b44ebc91605535770e38e5963a21cd32b066509812a75cd7338f65 | 0 | 176 |
import { createStreamableUI } from "ai/rsc";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection, UILibrary } from "@/lib/types";
export async function componentIterationSummarizer(
uiStream: ReturnType<typeof createStreamableUI>,
originalCode: string,
updatedCo... | synth-ui | lib/ai/agents/component/iteration/component-iteration-summarizer.tsx | TypeScript | e147695123c6e631c2a9ae52406e43ee191433080e8af0160203079308887ae0 | 0 | 316 |
import { createStreamableUI, createStreamableValue } from "ai/rsc";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection, UILibrary } from "@/lib/types";
import { kv } from "@vercel/kv";
import ComponentCard from "@/components/component-card";
import { ReactIcon } from ... | synth-ui | lib/ai/agents/component/iteration/component-iteration.tsx | TypeScript | 4b68fd9014287b68e752d9743319139e866941720d6cec77e5abe1fdcb32b7d3 | 0 | 648 |
import { createStreamableUI } from "ai/rsc";
import { CoreMessage } from "ai";
import { streamingAgent, StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { LLMSelection } from "@/lib/types";
export async function inquire(
uiStream: ReturnType<typeof createStreamableUI>,
messages: CoreMessage[],
lang... | synth-ui | lib/ai/agents/inquire/inquire.tsx | TypeScript | 0f2f50358a4354393e24dc8ef2a0aead5898daf520e504df7826594721678615 | 0 | 223 |
import { createStreamableUI, createStreamableValue } from "ai/rsc";
import { streamObject, streamText } from "ai";
import { StreamResponse } from "@/lib/ai/agents/streamingAgent";
import { getModel } from "@/lib/utils/registry";
import PromptSuggestions from "@/components/prompt-suggestions";
import { LLMSelection } fr... | synth-ui | lib/ai/agents/inquire/prompt-suggestor.tsx | TypeScript | 11d10808241363fea56befc68eb48e551c2cca79ce040d37e406722049c9f929 | 0 | 643 |
import {
StreamableValue,
createAI,
createStreamableUI,
createStreamableValue,
getAIState,
getMutableAIState,
} from "ai/rsc";
import React, { ReactNode } from "react";
import { CoreMessage, generateId } from "ai";
import { AIMessage, Chat, LLMSelection, UILibrary } from "@/lib/types";
import {
BotMessage... | synth-ui | lib/ai/core/index.tsx | TypeScript | 647584013c77781dfd9f013ac9a2deaa9cb214f6623df6bf603744726fc283ca | 0 | 896 |
("Error in onGetUIState:", error);
}
return initialUIState;
},
onSetAIState: async ({ state, done }) => {
"use server";
try {
const user = await currentUser();
if (user) {
const { id, messages, createdAt, path } = state;
let { title } = state;
const userId = us... | synth-ui | lib/ai/core/index.tsx | TypeScript | f6bd3af9c3b32d8759627858f0f31c3ede7197570aa037d3ae3b3a49aec0e63a | 1 | 896 |
>
),
};
}
} catch (error: any) {
return {
id,
display: (
<ErrorCard
message={error.message ?? "An unknown error occured"}
/>
),
};
}
... | synth-ui | lib/ai/core/index.tsx | TypeScript | bfc7f71e644ce70d2ac3f0cfb64d1b47a31058eed20fe151710dac7f3811858d | 2 | 96 |
"use server";
import { SpinnerMessage } from "@/components/chat-message";
import { nextActionSchema } from "@/lib/schema/next-action";
import { CoreMessage, generateId } from "ai";
import {
createStreamableUI,
createStreamableValue,
getMutableAIState,
} from "ai/rsc";
import { z } from "zod";
import {
taskMana... | synth-ui | lib/ai/core/workflow.tsx | TypeScript | eeb0c1be0dfc2d5f775d927c8c62bf9a6a01a3b75278442c26652de72a0924f2 | 0 | 896 |
{summary.response}`;
uiStream.append(
<DisclaimerBadge content={disclaimerContent} llm={llm} />,
);
aiState.done({
...aiState.get(),
messages: [
...aiState.get().messages,
{
id,
content: abstract.response,
role: "assistan... | synth-ui | lib/ai/core/workflow.tsx | TypeScript | f674a2e4c43976cfc9f789cad578b7c8610a1ec8c2bace19cccb101e0721c0bb | 1 | 741 |
"use client";
import { createContext, useContext, useEffect, useState } from "react";
import { LLMSelection } from "@/lib/types";
const LOCAL_STORAGE_KEY = "app-settings";
interface AppSettings {
llm: LLMSelection;
uiLibrary: string;
}
const defaultSettings: AppSettings = {
llm: "openai:gpt-4o",
uiLibrary: ... | synth-ui | lib/hooks/use-app-settings.tsx | TypeScript | 55b19056735c010980c9afbb3711f6c4a249813a7b327b6d791302082adb5fb8 | 0 | 338 |
"use client";
import { createContext, useContext, useEffect, useState } from "react";
import { Chat } from "@/lib/types";
import { renameChat } from "@/lib/actions/chat";
import { toast } from "sonner";
const LOCAL_STORAGE_KEY = "app-state";
interface AppState {
chat: Chat | null;
isGenerating: boolean;
prompt... | synth-ui | lib/hooks/use-app-state.tsx | TypeScript | 6eede7d95a3c3c8d48763208e52a1379b95c355f6ce93818d4a751f85c0bd930 | 0 | 705 |
"use client";
import {
createContext,
useContext,
useEffect,
useState,
useCallback,
} from "react";
import { AIMessage } from "@/lib/types";
const LOCAL_STORAGE_KEY = "component-preview-state";
interface PreviewState {
messageId: string | null;
isOpen: boolean;
code: string;
title: string;
fileNa... | synth-ui | lib/hooks/use-component-preview.tsx | TypeScript | 1580a87861701b0a497239f8de874957bc4fc04023f504239715d416d48ed720 | 0 | 656 |
"use client";
import * as React from "react";
export interface useCopyToClipboardProps {
timeout?: number;
}
export function useCopyToClipboard({
timeout = 2000,
}: useCopyToClipboardProps) {
const [isCopied, setIsCopied] = React.useState<Boolean>(false);
const copyToClipboard = (value: string) => {
if ... | synth-ui | lib/hooks/use-copy-to-clipboard.tsx | TypeScript | 1cfde67edeb26da8624a15d1d94524c4e2ec679be1a637c3b119c35328f7f1c3 | 0 | 150 |
import { useEffect, useRef, RefObject } from "react";
export function useScrollToBottom<T extends HTMLElement>(): [
RefObject<T>,
RefObject<T>,
] {
const containerRef = useRef<T>(null);
const endRef = useRef<T>(null);
useEffect(() => {
const container = containerRef.current;
const end = endRef.curre... | synth-ui | lib/hooks/use-scroll-to-bottom.tsx | TypeScript | 3e5d7a85a46d2138757c3452bab7fd63c7f330f1cc5bd0a2f8edc047b7cf356d | 0 | 173 |
import { StreamableValue, readStreamableValue } from "ai/rsc";
import { useEffect, useState } from "react";
export const useStreamableText = (
content: string | StreamableValue<string>,
) => {
const [rawContent, setRawContent] = useState<string>(
typeof content === "string" ? content : "",
);
useEffect(()... | synth-ui | lib/hooks/use-streamable-text.tsx | TypeScript | ccaea59adaceb68944e95c5057b137d9ea0c4a2d8a6ad8f3e95f05cc0120a9ef | 0 | 165 |
import { z } from "zod";
export const LanguageSchema = z.object({
language: z
.string()
.describe("The detected language of the message")
.default("English"),
});
export type Language = z.infer<typeof LanguageSchema>;
| synth-ui | lib/schema/language.tsx | TypeScript | 5280996806ee0cb27f4cd24fef4bc55228043fd1be0c05fe55ca72879267bdaf | 0 | 60 |
import { DeepPartial } from "ai";
import { z } from "zod";
export const nextActionSchema = z.object({
next: z
.enum(["inquire", "generate_component", "iterate_component"])
.describe(
"The next action to be taken based on the user's prompt and the information available.",
),
});
export type Partial... | synth-ui | lib/schema/next-action.tsx | TypeScript | 68e0eca2ab2b8acd0b06b8b7d721459339ca8e948d5c23514665ab637be0cae8 | 0 | 98 |
import { DeepPartial } from "ai";
import { z } from "zod";
export const PromptSuggestionsSchema = z.object({
suggestionsTitle: z
.string()
.describe(
'A title for "Suggested Prompts" in the resepective language of the user.',
),
suggestions: z
.array(z.string())
.describe(
"Three fo... | synth-ui | lib/schema/prompt-suggestions.tsx | TypeScript | c5bdfb7513f347a85d9535f969edf84b852faa6aa9654bb5d9341bd027b9d331 | 0 | 120 |
import { z } from "zod";
import { DeepPartial } from "ai";
import shadcnUIComponentsDump from "@/public/assets/content/external/components/shadcn/dump.json";
import nextUIComponentsDump from "@/public/assets/content/external/components/nextui/dump.json";
import flowbiteComponentsDump from "@/public/assets/content/exter... | synth-ui | lib/schema/component/specification.tsx | TypeScript | c80c823c3c58819d4189385d8d2ab798f87d2227c4bd5ab4acdcb2a49244f603 | 0 | 896 |
);
export function getComponentSpecificationSchema(uiLibrary: UILibrary) {
const uiLibraryComponents = [...getUILibraryComponents(uiLibrary)] as const;
// Main schema for the component specification
const uiLibraryImportSchema = z.object({
imports: z
.array(
z.object({
name: z
... | synth-ui | lib/schema/component/specification.tsx | TypeScript | 2a29e30b09a7ecd762440374825c72f26d055e0e6f1a38a019f36fa39c5aab90 | 1 | 627 |
import { create } from "zustand";
import { getChats } from "@/lib/actions/chat";
import { Chat } from "@/lib/types";
interface ChatStore {
chats: Chat[] | null;
isLoading: boolean;
error: string | null;
fetchChats: (userId: string) => Promise<void>;
}
export const useChatStore = create<ChatStore>((set) => ({
... | synth-ui | lib/stores/chatStore.ts | TypeScript | 830d881e3029c5813c34e434eb54813daa4e953e86da7e4690c4b1d8964f4ab1 | 0 | 209 |
import { CoreMessage, ToolContent } from "ai";
export interface Chat extends Record<string, any> {
id: string;
title: string;
createdAt: Date;
userId: string;
path: string;
messages: AIMessage[];
sharePath?: string;
}
export type AIMessageType =
| "component_specification"
| "component_card"
| "co... | synth-ui | lib/types/index.d.ts | TypeScript | e91a7051a1aa791cb15cd6b4d67b876d40fc29f4d65647a02494834c8a86cd51 | 0 | 321 |
import { UILibrary } from "@/lib/types";
import shadcnUIComponentsDump from "@/public/assets/content/external/components/shadcn/dump.json";
import nextUIComponentsDump from "@/public/assets/content/external/components/nextui/dump.json";
import flowbiteComponentsDump from "@/public/assets/content/external/components/flo... | synth-ui | lib/utils/getUILibraryComponents.ts | TypeScript | 810a95a9b5491f638a8c11e30e345ec29640b5a716e919ac6693c9c1d55bc2c8 | 0 | 170 |
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
import { CoreMessage } from "ai";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
/**
* Takes an array of AIMessage and modifies each message where the role is 'tool'.
* Changes the role to 'assis... | synth-ui | lib/utils/index.ts | TypeScript | 9cd05aa32e905b2a6751b4aaebcfb93790d24ac407a49e647b230fd74ab6ef49 | 0 | 470 |
import { experimental_createProviderRegistry as createProviderRegistry } from "ai";
import { openai } from "@ai-sdk/openai";
import { anthropic } from "@ai-sdk/anthropic";
import { google } from "@ai-sdk/google";
import { mistral } from "@ai-sdk/mistral";
import { LLMSelection } from "@/lib/types";
export const regist... | synth-ui | lib/utils/registry.ts | TypeScript | 8d6a80c5dfd086c7c24531a8f83df131224463d6baf33307f61c8a02f7a97a3c | 0 | 208 |
[
{
"name": "Accordion",
"description": "Use the accordion component and its options to expand and collapse the content inside each panel based on state reactivity from React and Tailwind CSS",
"docs_path": "./build/gits/themesberg$flowbite-react/app/docs/components/accordion/accordion.mdx",
"docs": {... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | deb8dfa08ec89d7501d0fcae6037c26295cc650396173faa1419caaa55c09a77 | 0 | 896 |
sections of pages.\r\n </p>\r\n <p className=\"mb-2 text-gray-500 dark:text-gray-400\">\r\n However, we actually recommend using both Flowbite, Flowbite Pro, and even Tailwind UI as there is no\r\n technical reason stopping you from using the best of two worlds.\r\n </p>\r\n ... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | eba24dd19fc40f252b5eba192d57d88488b9b53cd00d7a5af3e60285cdd2ce95 | 1 | 896 |
\n <p className=\"text-gray-500 dark:text-gray-400\">\r\n Check out the\r\n <a href=\"https://flowbite.com/figma/\" className=\"text-cyan-600 hover:underline dark:text-cyan-500\">\r\n Figma design system\r\n </a>\r\n based on the utility classes from Tailwind CSS an... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 542855ca22bad030023e7727f4d0d3268079aa3ef252c50d2e8d1ae170283e5f | 2 | 896 |
\"info\">\r\n <span>\r\n <span className=\"font-medium\">Info alert!</span> Change a few things up and try submitting again.\r\n </span>\r\n </Alert>\r\n\n </>\n )\n}"
}
],
"examples": [
{
"source": "alert-with-icon.tsx",
"code": "'use client';\n\nimport { Al... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 90f32b527ccc67561050310066da775759cdbdcbe58834e45177d0af13809a5c | 3 | 896 |
> Change a few things up and try submitting again.\r\n </span>\r\n </Alert>\r\n\n </>\n )\n}"
},
{
"source": "all-options.tsx",
"code": "'use client';\n\nimport { Alert } from 'flowbite-react';\nimport { HiInformationCircle } from 'react-icons/hi';\n\nexport default function All... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | b6407a45438704331ac408472222783651611651770310f7377de52d082d42af | 4 | 896 |
}"
},
{
"source": "placeholder-initials.tsx",
"code": "'use client';\n\nimport { Avatar } from 'flowbite-react';\n\nexport default function PlaceholderInitialsComponent() {\n return (\n <>\n\r\n <div className=\"flex flex-wrap gap-2\">\r\n <Avatar placeholderInitials=\"RR\" />\r... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 062d32ff5da48928698af7c978085666d247efb0790a3ea89a2c4f36592ae51f | 5 | 896 |
} from 'flowbite-react';\n\nexport default function AvatarTextComponent() {\n return (\n <>\n\r\n <Avatar img=\"/images/people/profile-picture-5.jpg\" rounded>\r\n <div className=\"space-y-1 font-medium dark:text-white\">\r\n <div>Jese Leos</div>\r\n <div className=\"text-sm text-gray-500 dark:text-gray-... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 605c103d2ad3ccfcd95346c55c6c325ad74d5a20dd8e4a7f1411b98107b72674 | 6 | 896 |
\"purple\" />\r\n <Avatar img=\"/images/people/profile-picture-5.jpg\" bordered color=\"success\" />\r\n <Avatar img=\"/images/people/profile-picture-5.jpg\" bordered color=\"pink\" />\r\n </div>\r\n\n </>\n )\n}"
},
{
"source": "sizes.tsx",
"code": "'use client';\n\nimport {... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | d418db283e66fe15aa76f7d955fc9080e1db84800a28842b558d020a01df4e90 | 7 | 896 |
themesberg$flowbite-react/app/docs/components/badge/badge.mdx",
"docs": {
"import": {
"source": "badge.mdx",
"code": "'use client';\n\nimport { Badge } from 'flowbite-react';\n"
},
"use": [
{
"source": "default-badges.tsx",
"code": "'use client';\n\nimpo... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 6ec84c3a1326b91258dab23826c432a5ddc99d15b8b382522fe0121d8ed18ab5 | 8 | 896 |
>\r\n Default\r\n </Badge>\r\n <Badge color=\"gray\" size=\"sm\">\r\n Dark\r\n </Badge>\r\n <Badge color=\"failure\" size=\"sm\">\r\n Failure\r\n </Badge>\r\n <Badge color=\"success\" size=\"sm\">\r\n Success\r\n </Badge>\r\n <Badge color=\"warning\" size=\"sm\">\r\n Warning\r\n </Badge>\r\n <B... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 9756658b15d7fd0d19a22f77e4284f9fead7a62be726c964a4a588592feed6a9 | 9 | 896 |
: "'use client';\n\nimport { Banner } from 'flowbite-react';\nimport { HiArrowRight, HiX } from 'react-icons/hi';\r\nimport { MdPercent } from 'react-icons/md';\n\nexport default function BottomBannerPositionComponent() {\n return (\n <>\n <Banner>\r\n <div className=\"fixed bottom-0 left-0 z-50 flex justify-bet... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | ce62700057d14ce5b675aebdf79d6bf95df713fcffc4edaf882e1ec6eed937c2 | 10 | 896 |
"mr-2 h-6\" alt=\"Flowbite Logo\" />\r\n <span className=\"self-center whitespace-nowrap text-lg font-semibold dark:text-white\">Flowbite</span>\r\n </a>\r\n <p className=\"flex items-center text-sm font-normal text-gray-500 dark:text-gray-400\">\r\n Build websites even faster with c... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 17228d1a411138faadec7c0a64872834288a2f53340d04b0846afbb29ddcb364 | 11 | 896 |
n\nexport default function InformationalBannerComponent() {\n return (\n <>\n <Banner>\r\n <div className=\"fixed left-0 top-0 z-50 flex w-full flex-col justify-between border-b border-gray-200 bg-gray-50 p-4 dark:border-gray-600 dark:bg-gray-700 md:flex-row\">\r\n <div className=\"mb-4 md:mb-0 md:mr-4\">\... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 849def09c1efd85e91ac52f5a2fe72848e42767df2d81f1e07e8ad63cb1f9569 | 12 | 896 |
\nimport { Breadcrumb } from 'flowbite-react';\nimport { HiHome } from 'react-icons/hi';\n\nexport default function DefaultBreadcrumbComponent() {\n return (\n <>\n\r\n <Breadcrumb aria-label=\"Default breadcrumb example\">\r\n <Breadcrumb.Item href=\"#\" icon={HiHome}>\r\n Home\r\n </Breadcrumb.Item>\r\n ... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 2120fc69aee11d25b9ef3177df54e7d83634d4f6aebeda38b970e59c8de50735 | 13 | 896 |
Button>\r\n <Button color=\"dark\" pill>\r\n Dark\r\n </Button>\r\n <Button color=\"light\" pill>\r\n Light\r\n </Button>\r\n <Button color=\"success\" pill>\r\n Success\r\n </Button>\r\n <Button color=\"failure\" pill>\r\n Failure\r\n </Button>\r\n <Button color=\"warning\" pill>\r\n Warning\r\... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 1e658f0362305ae922b81104d140d91ecf585d44116897c941932febcf225a10 | 14 | 896 |
n Pink to Orange\r\n </Button>\r\n <Button outline gradientDuoTone=\"tealToLime\">\r\n Teal to Lime\r\n </Button>\r\n <Button outline gradientDuoTone=\"redToYellow\">\r\n Red to Yellow\r\n </Button>\r\n\n </>\n )\n}"
},
{
"source": "button-sizes.tsx",
"code": "'use cli... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | b6fe24ff488052eb3ab516a09aa8ca0e62a93b5625ffb132f9dac068a4d60f24 | 15 | 896 |
n <>\n\r\n <div className=\"flex flex-wrap items-center gap-2\">\r\n <Button size=\"xs\" isProcessing>\r\n Click me!\r\n </Button>\r\n <Button size=\"sm\" isProcessing gradientDuoTone=\"purpleToBlue\">\r\n Click me!\r\n </Button>\r\n <Button size=\"md\" isProcessing color=\"red\">\r\n Cl... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | fd7be9208f2f3c3cba2a5b009af0e0f967e7ab90bff16d855eaf18bcaeeccd00 | 16 | 896 |
use client';\n\nimport { Button } from 'flowbite-react';\nimport { HiAdjustments, HiCloudDownload, HiUserCircle } from 'react-icons/hi';\n\nexport default function WithIconsComponent() {\n return (\n <>\n\r\n <Button.Group>\r\n <Button color=\"gray\">\r\n <HiUserCircle className=\"mr-3 h-4 w-4\" />\r\n P... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | dc3394c36879a45bd45626e9b9b254c1db23ec1a6d7ba0dac36fa3372e2bd93a | 17 | 896 |
Button.Group>\r\n\n </>\n )\n}"
},
{
"source": "outline-button-group-with-icons.tsx",
"code": "'use client';\n\nimport { Button } from 'flowbite-react';\nimport { HiAdjustments, HiCloudDownload, HiUserCircle } from 'react-icons/hi';\n\nexport default function OutlineWithIconsCompone... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | e30009d3db8a36279ebce9d5dba19886e80bc9799a782801c31cf0d12ffe3416 | 18 | 896 |
" className=\"max-w-sm\">\r\n <h5 className=\"text-2xl font-bold tracking-tight text-gray-900 dark:text-white\">\r\n Noteworthy technology acquisitions 2021\r\n </h5>\r\n <p className=\"font-normal text-gray-700 dark:text-gray-400\">\r\n Here are the biggest enterprise technology acquisitions of 2021... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 9e39dc6d45c127a70cd36a07d5d18328c97a48a557e59c55bc4467f9e8a6db4a | 19 | 896 |
nimport Image from 'next/image';\n\nexport default function CardWithDecorativeImageComponent() {\n return (\n <>\n <Card renderImage={() => {<Image width={500} height={500} src=\"/images/blog/image-1.jpg\" />}}>\r\n <h5 className=\"text-2xl font-bold tracking-tight text-gray-900 dark:text-white\">\r\n Notewo... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | a498f8bb9378d7b262c4410f6b579e0bb361041e3bcd36a943c4a5cd6929a4f2 | 20 | 896 |
</a>\r\n </Dropdown.Item>\r\n </Dropdown>\r\n </div>\r\n <div className=\"flex flex-col items-center pb-10\">\r\n <Image\r\n alt=\"Bonnie image\"\r\n height=\"96\"\r\n src=\"/images/people/profile-picture-3.jpg\"\r\n width=\"96\"\r\n className=\"mb-3 rounded-ful... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 313782eb1581713fc9d1bd90425f54f4270be60b5a4525c48fb220dbe9325120 | 21 | 896 |
\n </div>\r\n <div className=\"flex items-center gap-2\">\r\n <Checkbox id=\"remember\" />\r\n <Label htmlFor=\"remember\">Remember me</Label>\r\n </div>\r\n <Button type=\"submit\">Submit</Button>\r\n </form>\r\n </Card>\r\n\n </>\n )\n}"
},
{
"source": ... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 2f7a9be50ea343edb42d22b3da795ece8ca17ee682389f95c34b3979287d5fc1 | 22 | 896 |
h-5 w-5 text-yellow-300\"\r\n fill=\"currentColor\"\r\n viewBox=\"0 0 20 20\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n >\r\n <path d=\"M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | a7015947dfc02fcc831b75750713407a2b0b2098a750f14051689f85a2067322 | 23 | 896 |
span className=\"text-3xl font-bold text-gray-900 dark:text-white\">$599</span>\r\n <a\r\n href=\"#\"\r\n className=\"rounded-lg bg-cyan-700 px-5 py-2.5 text-center text-sm font-medium text-white hover:bg-cyan-800 focus:outline-none focus:ring-4 focus:ring-cyan-300 dark:bg-cyan-600 dark:hover:bg-cyan... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | c74a8d1f9599e243072520a29b7dc54d1f41a62cc3a3686a2d44fc9d58f833f3 | 24 | 896 |
\n </svg>\r\n <div className=\"text-left\">\r\n <div className=\"mb-1 text-xs\">Download on the</div>\r\n <div className=\"-mt-1 font-sans text-sm font-semibold\">Mac App Store</div>\r\n </div>\r\n </a>\r\n <a\r\n href=\"#\"\r\n className=\"inline-flex w-fu... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 290a0a6d5df99c83df88cae52ba06ed7b97d789c18ddba06f72cd5e252f8f20a | 25 | 896 |
<li className=\"py-3 sm:py-4\">\r\n <div className=\"flex items-center space-x-4\">\r\n <div className=\"shrink-0\">\r\n <Image\r\n alt=\"Neil image\"\r\n height=\"32\"\r\n src=\"/images/people/profile-picture-1.jpg\"\r\n width... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | f329ae57b3ec0b7ab7444126dcfba8aea0b14ac4213fd2283405d4a8a23f66e1 | 26 | 896 |
-gray-500 dark:text-gray-400\">email@windster.com</p>\r\n </div>\r\n <div className=\"inline-flex items-center text-base font-semibold text-gray-900 dark:text-white\">$67</div>\r\n </div>\r\n </li>\r\n <li className=\"py-3 sm:py-4\">\r\n <div className=\"flex items-... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | c7308b1da2db33918a3f4538ef2fe7a3a7e03e900620088cfa58381fb663a12c | 27 | 896 |
text-gray-500 dark:text-gray-400\">Standard plan</h5>\r\n <div className=\"flex items-baseline text-gray-900 dark:text-white\">\r\n <span className=\"text-3xl font-semibold\">$</span>\r\n <span className=\"text-5xl font-extrabold tracking-tight\">49</span>\r\n <span className=\"ml-1 text-xl font-norma... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 88b1b4af7523814c18e1a64d603f410ebf2ca566551a473541186efe23601e84 | 28 | 896 |
100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z\"\r\n clipRule=\"evenodd\"\r\n ></path>\r\n </svg>\r\n <span className=\"text-base font-normal leading-tight text-gray-500 dark:text-gray-400\">Integration help</spa... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 66952759da8e1e598db8b01437c0574ea962cdfd5427caa7c2471b2cab8577ae | 29 | 896 |
z\"\r\n clipRule=\"evenodd\"\r\n ></path>\r\n </svg>\r\n <span className=\"text-base font-normal leading-tight text-gray-500\">Complete documentation</span>\r\n </li>\r\n <li className=\"flex space-x-3 line-through decoration-gray-500\">\r\n <svg\r\n className... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 5e0989775beb34d3121060168d6fc49d5445c9ad2aebc990ebddf9287f66a727 | 30 | 896 |
M39.0728 0L21.9092 12.6999L25.1009 5.21543L39.0728 0Z\" fill=\"#E17726\" />\r\n <path d=\"M0.966797 0.0151367L14.9013 5.21656L17.932 12.7992L0.966797 0.0151367Z\" fill=\"#E27625\" />\r\n <path\r\n d=\"M32.1656 27.0093L39.7516 27.1537L37.1004 36.1603L27.8438 33.6116L32.1656 27.0093Z\"\... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 75e44ecc931327c48cf351df8bffb68c17e495102618af4500b047cdbf5ba573 | 31 | 896 |
\n d=\"M17.6412 19.5088L17.8217 20.6447L18.2676 23.4745L17.9809 32.166L16.6254 25.1841L16.625 25.1119L17.6412 19.5088Z\"\r\n fill=\"#E27525\"\r\n />\r\n <path\r\n d=\"M22.3562 19.4932L23.3751 25.1119L23.3747 25.1841L22.0158 32.1835L21.962 30.4328L21.75 23.423... | synth-ui | public/assets/content/external/components/flowbite/dump.json | JSON | 021154ca0ee7e5077a16cca701ea32dbe53dc56856df14769b9aea06b92a4516 | 32 | 896 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.