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 |
|---|---|---|---|---|---|---|
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"isolatedModules": true,
"lib": ["es2022", "DOM", "DOM.... | interiorly | packages/typescript-config/base.json | JSON | 69e9ba33673751654d08bf74f73b624c3af61f26172270b2dce2eba9e9faa0e6 | 0 | 146 |
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Next.js",
"extends": "./base.json",
"compilerOptions": {
"plugins": [{ "name": "next" }],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowJs": true,
"jsx": "preserve",
"noEmit": true,
"paths": {
"@/*": [... | interiorly | packages/typescript-config/nextjs.json | JSON | c55d513363fe595133c16360541d85122fccdb75745ea27c02baf14a913ae765 | 0 | 151 |
{
"name": "@interiorly/typescript-config",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
}
}
| interiorly | packages/typescript-config/package.json | JSON | 830283df41fde8b51d58e0e3a7828bd086b32f656703278db6aeea34de7b3fdd | 0 | 68 |
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Library",
"extends": "./base.json",
"compilerOptions": {
"jsx": "react-jsx"
}
}
| interiorly | packages/typescript-config/react-library.json | JSON | 85898b13f9809809596dd3f86bd75a521bdac45f0351c118782687f84584872d | 0 | 57 |
import { getAppPortal, send } from './lib/svix';
export const webhooks = {
send,
getAppPortal,
};
| interiorly | packages/webhooks/index.ts | TypeScript | 9d0a79f08486e6af1832bf54e9143f38b06bce1439c3a7b201083a1e2c1d6dae | 0 | 26 |
import { createEnv } from '@t3-oss/env-nextjs';
import { z } from 'zod';
export const keys = () =>
createEnv({
server: {
SVIX_TOKEN: z
.union([
z.string().min(1).startsWith('sk_'),
z.string().min(1).startsWith('testsk_'),
])
.optional(),
},
runtimeEnv: {
... | interiorly | packages/webhooks/keys.ts | TypeScript | d9a934e9ffb7931744cecdfa235093da389530440f12982dffbb80342b3abfba | 0 | 107 |
{
"name": "@interiorly/webhooks",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@interiorly/auth": "workspace:*",
"@t3-oss/env-nextjs": "^0.11.1",
... | interiorly | packages/webhooks/package.json | JSON | e3ef47e8f9db4acd436d2083f592d724ac5dcb3826eb57ceadd5d1155e5a5127 | 0 | 157 |
import 'server-only';
import { auth } from '@interiorly/auth/server';
import { Svix } from 'svix';
import { keys } from '../keys';
const svixToken = keys().SVIX_TOKEN;
export const send = async (eventType: string, payload: object) => {
if (!svixToken) {
throw new Error('SVIX_TOKEN is not set');
}
const svi... | interiorly | packages/webhooks/lib/svix.ts | TypeScript | 9626fb3c1f1ad60eb9e53968e8f93fab3f71b427cd404a99cac060b842081315 | 0 | 242 |
import type { PlopTypes } from '@turbo/gen';
export default function generator(plop: PlopTypes.NodePlopAPI): void {
plop.setGenerator('init', {
description: 'Generate a new package for the Monorepo',
prompts: [
{
type: 'input',
name: 'name',
message:
'What is the name ... | interiorly | turbo/generators/config.ts | TypeScript | 4ed0555075a20a9e006566c165462ca421b4b5347ed6c6ebcf310ecfb1bc67fa | 0 | 246 |
{
"type": "commonjs"
}
| interiorly | turbo/generators/package.json | JSON | 8005a3491db7d92f36ac66369861589f9c47123d3a7c71e643fc2c06168cd45a | 0 | 9 |
{
"name": "@interiorly/{{ name }}",
"private": true,
"version": "0.0.0",
"scripts": {
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
}
}
| interiorly | turbo/generators/templates/package.json.hbs | Handlebars | 62304d2e35fe90e9aab5507e32fc92c7f028942ad7335246ec507644a004b6a3 | 0 | 70 |
{
"extends": "@interiorly/typescript-config/react-library.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@interiorly/*": ["../../packages/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
| interiorly | turbo/generators/templates/tsconfig.json.hbs | Handlebars | 802e9f86d231bf20ec83d17ce8f3412f0cc7595e42f5ac33850f250c4d72543f | 0 | 109 |
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "app/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils"... | interiorly-dashboard | components.json | JSON | c75a13fe731de604c773eccf330ac72032e4702450861c3ff9559a6b5a81dfbf | 0 | 121 |
import type { Config } from "drizzle-kit";
import * as dotenv from "dotenv";
dotenv.config({ path: ".env" });
if (!process.env.DATABASE_URL) {
console.log("🔴 Cannot find database url");
}
export default {
schema: "lib/supabase/schema.ts",
out: "migrations",
driver: "pg",
dbCredentials: {
connectionStri... | interiorly-dashboard | drizzle.config.ts | TypeScript | b238f2fab3f4249ac94613ab79855a3163ba49362e3309439f2e22e647d3af87 | 0 | 105 |
import {
DEFAULT_LOGIN_REDIRECT,
apiAuthPrefix,
authRoutes,
publicRoutes,
} from "@/routes";
import { createMiddlewareClient } from "@supabase/auth-helpers-nextjs";
import { NextRequest, NextResponse } from "next/server";
export async function middleware(req: NextRequest) {
const { nextUrl } = req;
const ... | interiorly-dashboard | middleware.ts | TypeScript | c2076614d3a15959263e7f7d223b01a643b0aad06992f7f6ace20b05b6110904 | 0 | 305 |
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ["ijimlfawtfstgmbtzejv.supabase.co"],
},
};
export default nextConfig;
| interiorly-dashboard | next.config.mjs | JavaScript | be3f2e6999ef93c88e7a2747084bd7cd369848898ce667e8cc747fa5663599ed | 0 | 44 |
{
"name": "interiorly",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"push": "drizzle-kit push:pg",
"pull": "drizzle-kit introspect:pg ",
"generate": "drizzle-kit generate:pg",
"drop": "dri... | interiorly-dashboard | package.json | JSON | 1b0d517d14c40cef6fbdb8e6d2e8c419793cfe9e90b19dd8feb67852420e12e3 | 0 | 811 |
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
| interiorly-dashboard | postcss.config.js | JavaScript | fa650b380adfabb151a0b352f7135e107e6352345f899060f1c5c231228f94bf | 0 | 22 |
import type { Config } from "tailwindcss";
const { nextui } = require("@nextui-org/react");
const config = {
darkMode: ["class"],
content: [
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{t... | interiorly-dashboard | tailwind.config.ts | TypeScript | 1b2fbe795b0f367a18895fceaa0eb4f98bf76e641fb7efb2eaee68af7b0169c2 | 0 | 707 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--primary: 221.2 83.2% 53.3%;
--p... | interiorly-dashboard | app/globals.css | CSS | ea902ffcceb24610f2d20743768e16e3e471bb5db8c9199a1bd69cd67b17ca59 | 0 | 466 |
import type { Metadata } from "next";
import "./globals.css";
import { Inter as FontSans } from "next/font/google";
import { cn } from "@/lib/utils";
import { Toaster } from "@/components/ui/sonner";
import db from "@/lib/supabase/db";
import { TooltipProvider } from "@/components/ui/tooltip";
export const fontSans = ... | interiorly-dashboard | app/layout.tsx | TypeScript | 5126d2064d49429423fc60a9fd00d9be95c13994f5865781e877516cdaaf363b | 0 | 231 |
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import Image from "next/image";
import Link from "next/link";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="flex flex-col sp... | interiorly-dashboard | app/page.tsx | TypeScript | 7400a666ddf8b6cc7144d734cd3a4a3fbebc4d7a649c5dfd8fe4a4fea15ed7af | 0 | 218 |
import { SignInForm } from "@/components/auth/sign-in-form";
import { IconChevronLeft, IconHTL } from "@/components/icons";
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import Link from "next/link";
export default function SignIn() {
return (
<div className="containe... | interiorly-dashboard | app/(auth)/sign-in/page.tsx | TypeScript | 1ce022e817dc103e9afdf8bf34d8b83f79904ac4ba874ec726f1aad951ff1b3b | 0 | 395 |
import { SignUpForm } from "@/components/auth/sign-up-form";
import { IconChevronLeft, IconHTL } from "@/components/icons";
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import Link from "next/link";
export default function SignIn() {
return (
<div className="containe... | interiorly-dashboard | app/(auth)/sign-up/page.tsx | TypeScript | 292729f7edf36fb582bd631f74e4077a4714b53411220581801349c72985f1bc | 0 | 392 |
import React from "react";
import { createServerComponentClient } from "@supabase/auth-helpers-nextjs";
import { cookies } from "next/headers";
import { buttonVariants } from "@/components/ui/button";
import { findUser } from "@/lib/supabase/queries";
import LogoutButton from "@/components/logoutButton";
import Link fr... | interiorly-dashboard | app/(main)/dashboard/page.tsx | TypeScript | b24cb12beaa09c99bff36b48f291cbc655d0cdabfab74a637d4c88b411119e2b | 0 | 549 |
import { SettingsNav } from "@/components/settings-nav";
import db from "@/lib/supabase/db";
import React from "react";
interface SettingsLayoutProps {
children?: React.ReactNode;
}
export default async function SettingsLayout({
children,
}: SettingsLayoutProps) {
return (
<div className="flex min-h-screen ... | interiorly-dashboard | app/(main)/dashboard/settings/layout.tsx | TypeScript | 5282357018819a491c34a18175fd92c3e2438a67fd9fd58c6c90a5eb50a46a62 | 0 | 177 |
import { notFound, redirect } from "next/navigation";
import { DashboardHeader } from "@/components/dashboard/header";
import { DashboardShell } from "@/components/dashboard/shell";
import { UserNameForm } from "@/components/dashboard/user-settings-form";
import { createServerComponentClient } from "@supabase/auth-hel... | interiorly-dashboard | app/(main)/dashboard/settings/page.tsx | TypeScript | 764fc4e0b884e6e086a7d083249fe367fa80c9f899b2609afb4eed8a25ff1359 | 0 | 281 |
"use client";
import React from "react";
import data, { Category } from "@emoji-mart/data";
import Picker from "@emoji-mart/react";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
import { useTheme } from "next-themes";
interface EmojiPickerProps {
children: React.ReactNod... | interiorly-dashboard | components/emoji-picker.tsx | TypeScript | c81c3d6d9535376c654e8dbe9fa0bb250f69e086d08b02d0f6d92131c3acc231 | 0 | 245 |
"use client";
import * as React from "react";
import { cn } from "@/lib/utils";
function IconNextChat({
className,
inverted,
...props
}: React.ComponentProps<"svg"> & { inverted?: boolean }) {
const id = React.useId();
return (
<svg
viewBox="0 0 17 17"
xmlns="http://www.w3.org/2000/svg"
... | interiorly-dashboard | components/icons.tsx | TypeScript | 1a180fe1ec11532ce1f1e56a4390f3dd7d3d96f7617c9e8ff646d159dee85019 | 0 | 896 |
0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 ... | interiorly-dashboard | components/icons.tsx | TypeScript | 0a85e148d5857b601b6b6587c6883dbe34f0fc348bc439bd31f99bb8f3c7d656 | 1 | 896 |
0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
fill="#EA4335"
/>
</svg>
);
}
function IconHelp({ className, ...props }: React.ComponentProps<"svg">) {
return (
<svg
width="24"
height="24"
viewBox="0 0 24... | interiorly-dashboard | components/icons.tsx | TypeScript | f0ebbc9d675d78617b7446744a1ab96009be4701ec258fabeaf16d6ebcd33673 | 2 | 896 |
.org/2000/svg"
viewBox="0 0 32 32"
className={cn("h-5 w-5", className)}
{...props}
>
<path
d="M23.6361 9.33998C22.212 8.71399 20.6892 8.25903 19.0973 8C18.9018 8.33209 18.6734 8.77875 18.5159 9.13408C16.8236 8.89498 15.1469 8.89498 13.4857 9.13408C13.3283 8.77875 13.0946 8.33209 12.8... | interiorly-dashboard | components/icons.tsx | TypeScript | 92041b892426ba88bd0156344840de38dafd9fca30b579848fe158d09ef56efa | 3 | 896 |
14.8555 20.7776 14.8595 21.3626 14.8635C22.139 14.8702 22.1872 14.8675 22.2635 14.8126C22.3505 14.7497 22.3826 14.5877 22.3291 14.482C22.2983 14.4218 17.8848 7.04722 17.8728 7.03384C17.8674 7.02982 17.7978 7.03651 17.7188 7.0499C17.5341 7.08203 17.2623 7.11282 17.0134 7.12888C16.5288 7.16234 16.0295 7.16101 14.4325 7.1... | interiorly-dashboard | components/icons.tsx | TypeScript | 9449fa5c41f1ba9d02fbca018e8ce2d6bfb715a7630ff765ae2c1090873d04d1 | 4 | 896 |
/>
</g>
</svg>
);
}
function IconGitHub({ className, ...props }: React.ComponentProps<"svg">) {
return (
<svg
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={cn("h-4 w-4", className)}
{...props}
>
<title>Gi... | interiorly-dashboard | components/icons.tsx | TypeScript | b35401a43c0f0d39c11bc47dc2adfd90140726db2e295c8cf421418d4c42b83f | 5 | 896 |
fill="currentColor"
className={cn("h-4 w-4", className)}
{...props}
>
<path d="M230.92 212c-15.23-26.33-38.7-45.21-66.09-54.16a72 72 0 1 0-73.66 0c-27.39 8.94-50.86 27.82-66.09 54.16a8 8 0 1 0 13.85 8c18.84-32.56 52.14-52 89.07-52s70.23 19.44 89.07 52a8 8 0 1 0 13.85-8ZM72 96a56 56 0 1 1 56 56 56.... | interiorly-dashboard | components/icons.tsx | TypeScript | 2f810f966906f22e45285f440b614f90cff9fac92962e8b00cbbab37bce554a7 | 6 | 896 |
React.ComponentProps<"svg">) {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={cn("h-4 w-4", className)}
{...props}
>
<g>
<path d="M19.0001 8V7C19.0001 5.14348 18.2626 3.36301 16.... | interiorly-dashboard | components/icons.tsx | TypeScript | 1e65678c1abd4843af1f48ca795aeeca7e96a8a9be9913c36753785d347223f3 | 7 | 896 |
0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={cn("h-4 w-4", className)}
{...props}
>
<path d="M20 6H16V5C16 4.20435 15.6839 3.44129 15.1213 2.87868C14.5587 2.31607 13.7956 2 13 2H11C10.2044 2 9.44129 2.31607 8.87868 2.87868C8.31607 3.44129 8 4.20435 8 5V6... | interiorly-dashboard | components/icons.tsx | TypeScript | 918023ea1cbc21b63453f32fa1b998ef756cf13b6e9f82c4d22c80123d02b2c1 | 8 | 896 |
10.2478 1.26343 9.59767 0.766389C8.94752 0.269352 8.15188 6.10352e-05 7.3335 6.10352e-05C6.51512 6.10352e-05 5.71948 0.269352 5.06933 0.766389C4.41917 1.26343 3.95064 1.96059 3.736 2.75032H1C0.734784 2.75032 0.48043 2.85568 0.292893 3.04321C0.105357 3.23075 0 3.4851 0 3.75032C0 4.01554 0.105357 4.26989 0.292893 4.45743... | interiorly-dashboard | components/icons.tsx | TypeScript | 6b700bf54e9ac63b546063013903473b6617e8b733aa2298fb7f5e6ea421aef2 | 10 | 896 |
0 0 0 8-8V51.32L220.69 112Z" />
</svg>
);
}
function IconUsers({ className, ...props }: React.ComponentProps<"svg">) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
className={cn("h-4 w-4", className)}
viewBox="0 0 256 256"
{...props}
>
<path d... | interiorly-dashboard | components/icons.tsx | TypeScript | a66d4c05df7171246c0adfff6a55c6ee7c2e56ee16f52957a926211924ccd6e8 | 12 | 896 |
.62809 10.4426 8.31253 11.2051 8.31253 12.0001C8.31253 12.7951 8.62809 13.5576 9.18989 14.1201L13.7799 18.7101C13.9662 18.8948 14.2176 18.999 14.4799 19.0001C14.6115 19.0008 14.742 18.9756 14.8638 18.9258C14.9856 18.8761 15.0965 18.8027 15.1899 18.7101C15.2836 18.6171 15.358 18.5065 15.4088 18.3846C15.4596 18.2628 15.4... | interiorly-dashboard | components/icons.tsx | TypeScript | bd6f3937820cd4d87892f2fa77b8986885690faaea1d9aaf20657a78fa552581 | 13 | 896 |
"use client";
import React from "react";
import { Button } from "@/components/ui/button";
import { actionLogoutUser } from "@/lib/server-actions/auth";
import { useRouter } from "next/navigation";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
}... | interiorly-dashboard | components/logoutButton.tsx | TypeScript | 3a4c6455a40844d213daf86c18947b4885960d22d7813c4468bac1bf7f7f5ee4 | 0 | 235 |
"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { SidebarNavItem } from "@/types";
import { cn } from "@/lib/utils";
import * as Icons from "@/components/icons";
import { settingsConfig } from "@/config/settings";
export function SettingsNav() {
const items = setti... | interiorly-dashboard | components/settings-nav.tsx | TypeScript | bb2030ed34c5ce9e052e9282516b16f6251e6a08d4b0e4671bac0239e821c242 | 0 | 311 |
import { Progress } from "@/components/ui/progress";
import { Chip } from "@nextui-org/react";
import {
IconAccuracy,
IconCheck,
IconClose,
IconEdit,
IconHelp,
IconMessage,
IconSecure,
IconStop,
IconUsers,
} from "@/components/icons";
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
} fro... | interiorly-dashboard | components/auth/password-strength-indicator.tsx | TypeScript | b10c5b812963e17c708cbfa4e52b2aab35e873db422cdd8e45246b8963cf37ec | 0 | 488 |
"use client";
import * as React from "react";
import * as z from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { cn } from "@/lib/utils";
import {
IconDiscord,
IconGitHub,
IconGoogle,
IconSpinner,
} from "@/components/icons";
import { Button } ... | interiorly-dashboard | components/auth/sign-in-form.tsx | TypeScript | 0d7fc8c2fb5e5d13f192241733df8d5d7a724d9e6ddddd92343d94be86d5fceb | 0 | 896 |
"Password" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<Button
type="submit"
className="w-full m-auto border"
disabled={isLoading}
>
Sign In with Email
{... | interiorly-dashboard | components/auth/sign-in-form.tsx | TypeScript | 2506490bd38a4dcbb28a07976e26eb49c47624b8f86577b16cfdfaa579652153 | 1 | 456 |
"use client";
import * as React from "react";
import * as z from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { cn, evaluatePasswordStrength } from "@/lib/utils";
import {
IconAccuracy,
IconDiscord,
IconEyeClosed,
IconEyeOpen,
IconGitHub,
... | interiorly-dashboard | components/auth/sign-up-form.tsx | TypeScript | c463cec8ff0697776b1629a2d8473296c6cce1026aa0b95867fe54db0520061a | 0 | 896 |
>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="displayName"
render={({ field }) => (
<FormItem>
<FormControl>
<div className="relative flex w-ful... | interiorly-dashboard | components/auth/sign-up-form.tsx | TypeScript | 8735ab1e3505277b72b0a16f8388447e1b43b687bdc5102e400f163ce897a1d9 | 1 | 896 |
="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="px-2 bg-background text-muted-foreground">
Or continue with
</span>
</div>
</div>
<div className="flex w-full gap-4">
<Button
... | interiorly-dashboard | components/auth/sign-up-form.tsx | TypeScript | 320d98029ead0947c39d986bb0d5db65ba2a1c8d564406fd309b0371604a25a8 | 2 | 344 |
interface DashboardHeaderProps {
heading: string;
text?: string;
children?: React.ReactNode;
}
export function DashboardHeader({
heading,
text,
children,
}: DashboardHeaderProps) {
return (
<div className="flex items-center justify-between px-2">
<div className="grid gap-1">
<h1 classNa... | interiorly-dashboard | components/dashboard/header.tsx | TypeScript | 02465d97d75c2ee8057abb4e75c6212e7d38a084aa31c382b7c568560e9d8d62 | 0 | 134 |
import * as React from "react";
import { cn } from "@/lib/utils";
interface DashboardShellProps extends React.HTMLAttributes<HTMLDivElement> {}
export function DashboardShell({
children,
className,
...props
}: DashboardShellProps) {
return (
<div className={cn("grid items-start gap-8", className)} {...pro... | interiorly-dashboard | components/dashboard/shell.tsx | TypeScript | 33fce2e4d413f65d0defb68d33719c67e3be01e23441920e03705d0307feff56 | 0 | 90 |
"use client";
import * as React from "react";
import { useRouter } from "next/navigation";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import * as z from "zod";
import { cn } from "@/lib/utils";
import { UserProfileSchema } from "@/lib/validations/settings";
impor... | interiorly-dashboard | components/dashboard/user-settings-avatar.tsx | TypeScript | 4d6467c4971df8a1e7998257ed6ab23b926746538b0092fb953206885c3667e4 | 0 | 736 |
"use client";
import * as React from "react";
import { useRouter } from "next/navigation";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import * as z from "zod";
import { cn } from "@/lib/utils";
import { UserProfileSchema } from "@/lib/validations/settings";
impor... | interiorly-dashboard | components/dashboard/user-settings-form.tsx | TypeScript | 3dc0c8ad229ce60f37d9d2b5d79f986b700b7fbcf9321a5544f07b01c388a653 | 0 | 703 |
"use client";
import { AuthUser } from "@supabase/supabase-js";
import React, { useState } from "react";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { createClientComponentClient } from "@supabase/auth-helpers-nextjs";
import { useForm } from "rea... | interiorly-dashboard | components/onboarding/workspace-onboarding.tsx | TypeScript | 8d2a2518e9848f069ec4b6e11d606d3deb1f1e70175431d4ee868834c836c4f7 | 0 | 424 |
"use client";
import * as React from "react";
import * as ProgressPrimitive from "@radix-ui/react-progress";
import { cn } from "@/lib/utils";
type CustomProgressProps = React.ComponentPropsWithoutRef<
typeof ProgressPrimitive.Root
> & {
fill?: string;
};
const Progress = React.forwardRef<
React.ElementRef<ty... | interiorly-dashboard | components/ui/progress.tsx | TypeScript | fb3dd52884ec1df68a0ce6ad5974f82e97866eddee5cbf51fcb64ba105426041 | 0 | 228 |
"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.forwardRef<
... | interiorly-dashboard | components/ui/tooltip.tsx | TypeScript | e4c39a17833122e02fbe896914e466bf101ea7173dc3d8f18a0201414c74fffc | 0 | 306 |
import { SettingsConfig } from "@/types";
export const settingsConfig: SettingsConfig = {
settingsNav: [
{
title: "Back",
href: "/dashboard",
icon: "IconChevronLeft",
},
{
title: "Profile",
href: "/settings/profile",
icon: "IconUser",
},
],
};
| interiorly-dashboard | config/settings.ts | TypeScript | 9319145c4498382c0f0a76cb6c3a5687ea71fd2b5d90147e85ffec6c354063d1 | 0 | 71 |
import { PasswordStrengthEvaluationResult } from "@/types";
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function evaluatePasswordStrength(password: string) {
const criteria = [
{
... | interiorly-dashboard | lib/utils.ts | TypeScript | 28c455a32b11f1d569a93687ed5f082de4c582c3881a06af64c82b8d798feccc | 0 | 487 |
"use server";
import z from "zod";
import { createRouteHandlerClient } from "@supabase/auth-helpers-nextjs";
import { cookies } from "next/headers";
import {
UserRegisterSchema,
UserAuthSchema,
UserOAuthSchema,
} from "@/lib/validations/auth";
import { findUserByEmail, updateDisplayName } from "@/lib/supabase/qu... | interiorly-dashboard | lib/server-actions/auth.ts | TypeScript | 4bf4e3ec8aa0dbb273ae24ff985530f5ee5fd0ea62cd009819c4932da9610c80 | 0 | 630 |
"use server";
import { z } from "zod";
import { UserProfileSchema } from "../validations/settings";
import { createRouteHandlerClient } from "@supabase/auth-helpers-nextjs";
import { cookies } from "next/headers";
import { updateAvatarUrl, updateDisplayName } from "../supabase/queries";
import { User } from "../supaba... | interiorly-dashboard | lib/server-actions/settings.ts | TypeScript | 26074994f404260f375d01ed1341799a6cb059ffbf1dde09f18b1c437d88724a | 0 | 332 |
import { drizzle } from "drizzle-orm/postgres-js";
import postgres from "postgres";
import * as dotenv from "dotenv";
import * as schema from "@/migrations/schema";
const { DATABASE_URL } = process.env;
if (!DATABASE_URL) {
console.log("🔴 No database URL");
}
const client = postgres(DATABASE_URL as string, { max:... | interiorly-dashboard | lib/supabase/db.ts | TypeScript | 61e47131d23a467316060ce00955315d64bdb0e0e785ae2ef28c2a311c4837ee | 0 | 108 |
import { migrate } from "drizzle-orm/postgres-js/migrator";
import db from "@/lib/supabase/db";
const migrateDb = async () => {
try {
console.log("🟠 Migrating client");
await migrate(db, { migrationsFolder: "migrations" });
console.log("🟢 Successfully Migrated");
} catch (error) {
console.log("🔴... | interiorly-dashboard | lib/supabase/migrate.ts | TypeScript | 3baa026cd60d3a7b1527549b8f4db782c7fa10a0dda5a7b8c6601bdd5f245c7d | 0 | 104 |
"use server";
import { validate } from "uuid";
import { files, folders, users, workspaces } from "@/migrations/schema";
import db from "@/lib/supabase/db";
import {
File,
Folder,
Subscription,
User,
workspace,
} from "@/lib/supabase/supabase.types";
import { and, eq, ilike, notExists } from "drizzle-orm";
im... | interiorly-dashboard | lib/supabase/queries.ts | TypeScript | 79cdc717f61894c7ada7b3b67a91c399b6f5842be989c71c86a5871aaf13d340 | 0 | 896 |
: "Error" };
}
};
export const deleteFile = async (fileId: string) => {
if (!fileId) return;
await db.delete(files).where(eq(files.id, fileId));
};
export const deleteFolder = async (folderId: string) => {
if (!folderId) return;
await db.delete(files).where(eq(files.id, folderId));
};
export const getFolde... | interiorly-dashboard | lib/supabase/queries.ts | TypeScript | bff8d34e1e99c97a556a7b1e877906c71f4d252cb90ed17c89e771b637d6cbb9 | 1 | 896 |
.id), eq(u.workspaceId, workspaceId)),
});
if (!userExists)
await db.insert(collaborators).values({ workspaceId, userId: user.id });
});
};
export const removeCollaborators = async (
users: User[],
workspaceId: string
) => {
const response = users.forEach(async (user: User) => {
const userExi... | interiorly-dashboard | lib/supabase/queries.ts | TypeScript | 8768a0e84ef702c151fc54ef66008a4b41cdacbc73091551983dcc837271aa72 | 2 | 896 |
async (file: Partial<File>, fileId: string) => {
try {
const response = await db
.update(files)
.set(file)
.where(eq(files.id, fileId));
return { data: null, error: null };
} catch (error) {
console.log(error);
return { data: null, error: "Error" };
}
};
export const updateWorks... | interiorly-dashboard | lib/supabase/queries.ts | TypeScript | 0667f815a3cd64e37fd98e26ed9ed7d390d0417417cf07acdd63fa3cd1668115 | 3 | 382 |
import { relations, sql } from "drizzle-orm";
import {
boolean,
integer,
jsonb,
pgTable,
text,
timestamp,
uuid,
} from "drizzle-orm/pg-core";
import {
prices,
products,
subscriptionStatus,
users,
} from "@/migrations/schema";
export const workspaces = pgTable("workspaces", {
id: uuid("id").defa... | interiorly-dashboard | lib/supabase/schema.ts | TypeScript | ac9e4384712a895d9421d6c72fe02e62904cbc7e76fb6b2a339952c9d3e0ae42 | 0 | 896 |
)`),
trialStart: timestamp("trial_start", {
withTimezone: true,
mode: "string",
}).default(sql`now()`),
trialEnd: timestamp("trial_end", {
withTimezone: true,
mode: "string",
}).default(sql`now()`),
});
export const collaborators = pgTable("collaborators", {
id: uuid("id").defaultRandom().pri... | interiorly-dashboard | lib/supabase/schema.ts | TypeScript | 881fca7f340af36479e96a647387ab9c8e789c6468835910d86d0ef984926563 | 1 | 275 |
import { InferSelectModel } from "drizzle-orm";
import {
customers,
folders,
prices,
products,
subscriptions,
users,
workspaces,
} from "@/migrations/schema";
import { files } from "./schema";
export type Json =
| string
| number
| boolean
| null
| { [key: string]: Json | undefined }
| Json[]... | interiorly-dashboard | lib/supabase/supabase.types.d.ts | TypeScript | 3423f69407e2679ec4f303e44af753b22b076a6756726fb39d1b49c14eef3d0a | 0 | 896 |
| null;
currency?: string | null;
description?: string | null;
id: string;
interval?:
| Database["public"]["Enums"]["pricing_plan_interval"]
| null;
interval_count?: number | null;
metadata?: Json | null;
product_id?: string |... | interiorly-dashboard | lib/supabase/supabase.types.d.ts | TypeScript | ae5e22d76358a83e25cac739df02aa8a92bd0706364f1809de4304219268083d | 1 | 896 |
: Json | null;
email: string | null;
full_name: string | null;
display_name: string | null;
id: string;
payment_method: Json | null;
updated_at: string | null;
};
Insert: {
avatar_url?: string | null;
billing_address?: Json ... | interiorly-dashboard | lib/supabase/supabase.types.d.ts | TypeScript | f4bb692bb3ea0acddb34c268e381f05de7bbb22bac0f8764ccb43a0144d192e6 | 2 | 585 |
import { z } from "zod";
export const UserRegisterSchema = z
.object({
email: z.string().email({ message: "Please enter a valid email" }),
displayName: z
.string()
.min(3, { message: "Display name must be at least 3 characters" }),
password: z
.string()
.min(8, { message: "Passwor... | interiorly-dashboard | lib/validations/auth.ts | TypeScript | ab717b16cbfa4174db8167d636c1c513850909f5c0411c1e8853f9a15e746ab0 | 0 | 359 |
import { z } from "zod";
export const UserProfileSchema = z.object({
displayName: z.string().optional(),
avatar: z.any().optional(),
});
| interiorly-dashboard | lib/validations/settings.ts | TypeScript | 2115f1abbc3c744c14899de872702a9b384c5ebdc05e7fa82c6058d44a1837b9 | 0 | 45 |
import { z } from "zod";
export const CreateWorkspaceSchema = z.object({
name: z
.string()
.min(3, { message: "Your workspace name must have at least 3 characters" }),
description: z.string(),
iconId: z.string(),
logoUrl: z.string(),
bannerUrl: z.string(),
});
| interiorly-dashboard | lib/validations/workspace.ts | TypeScript | 191e85a4fab214c8ff8e749838fad7dd12f46cc1a8b79f69f9676c6d47314ae0 | 0 | 82 |
CREATE TABLE IF NOT EXISTS "collaborators" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"workspace_id" uuid NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"user_id" uuid NOT NULL
);
--> statement-breakpoint
CREATE TABLE IF NOT EXISTS "files" (
"id" uuid PRIMARY KEY DEFAULT g... | interiorly-dashboard | migrations/0000_sour_mole_man.sql | SQL | 7de686ca785ef33a1fb2efba1a35dcf52f3db3438149ede40f215528f1591828 | 0 | 786 |
import {
pgTable,
foreignKey,
pgEnum,
uuid,
text,
jsonb,
timestamp,
boolean,
bigint,
integer,
} from "drizzle-orm/pg-core";
import { sql } from "drizzle-orm";
export const keyStatus = pgEnum("key_status", [
"default",
"valid",
"invalid",
"expired",
]);
export const keyType = pgEnum("key_typ... | interiorly-dashboard | migrations/schema.ts | TypeScript | d39ef9de61b7b936e7fc2e49baa21a0c179e0b72f5ec36f67fb52eed022d42ea | 0 | 896 |
quantity: integer("quantity"),
cancelAtPeriodEnd: boolean("cancel_at_period_end"),
created: timestamp("created", { withTimezone: true, mode: "string" })
.default(sql`now()`)
.notNull(),
currentPeriodStart: timestamp("current_period_start", {
withTimezone: true,
mode: "string",
})
.default(sq... | interiorly-dashboard | migrations/schema.ts | TypeScript | 84d44e6128f107b14f483ea9e7b56a31f96cf96677ed734786fff97b1d5fdc20 | 1 | 885 |
{
"id": "72a8bcf5-5b8f-4fd6-8ce4-0bc8dc4d45a0",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "5",
"dialect": "pg",
"tables": {
"collaborators": {
"name": "collaborators",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
... | interiorly-dashboard | migrations/meta/0000_snapshot.json | JSON | f21f723f2df29deb0e4b3761d1f09451e79958a1736f0d39b087405acba02925 | 0 | 896 |
": "no action"
},
"files_folder_id_folders_id_fk": {
"name": "files_folder_id_folders_id_fk",
"tableFrom": "files",
"tableTo": "folders",
"columnsFrom": [
"folder_id"
],
"columnsTo": [
"id"
],
"onDele... | interiorly-dashboard | migrations/meta/0000_snapshot.json | JSON | 78a93b1f4c26ff255f4f15888a8321f6ca68ded62786968ccf1e82e49943403e | 1 | 896 |
": "timestamp with time zone",
"primaryKey": false,
"notNull": true,
"default": "now()"
},
"current_period_end": {
"name": "current_period_end",
"type": "timestamp with time zone",
"primaryKey": false,
"notNull": true,
"defa... | interiorly-dashboard | migrations/meta/0000_snapshot.json | JSON | f63fbb1070a1e6e57f9c2658a01d9cafbf79b4ca2fdb0ef7628c4b51a8121362 | 2 | 837 |
{
"version": "5",
"dialect": "pg",
"entries": [
{
"idx": 0,
"version": "5",
"when": 1708270771301,
"tag": "0000_sour_mole_man",
"breakpoints": true
}
]
} | interiorly-dashboard | migrations/meta/_journal.json | JSON | 67d3f268a570ff0879af2197e4605ce38b9a008cd127734444e61d499823e0bd | 0 | 60 |
/**
* Array of publicly accessible routes.
* @type {string[]}
*/
export const publicRoutes = ["/"];
/**
* Array of routes used for authentication.
* These routes will redirect to /dashboard if the user is already logged in.
* @type {string[]}
*/
export const authRoutes = ["/sign-in", "/sign-up"];
/**
* Prefix... | interiorly-dashboard | routes/index.ts | TypeScript | 8298f05bef445da4636cac0dabd35930b59392b52125fe5310abaed907c17338 | 0 | 184 |
import * as Icons from "@/components/icons";
type PasswordStrengthCriterion = {
id: string;
met: boolean;
message: string;
};
type PasswordStrengthEvaluationResult = {
criteria: PasswordStrengthCriterion[];
strengthPercentage: number;
};
export type SidebarNavItem = {
title: string;
disabled?: boolean;... | interiorly-dashboard | types/index.d.ts | TypeScript | 9e6d876019727dff94eb931b346d03a8f43c4ea3b7139138b58701a77b829ac0 | 0 | 117 |
/** @type {import('next').NextConfig} */
const nextConfig = {};
export default nextConfig;
| interiorly-preview | next.config.mjs | JavaScript | 1e3206cb200e264fdddb4dbb2e4772daebc839fdbc94b78316d74892a0de6fa2 | 0 | 27 |
{
"name": "hf-sdxl",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@nextui-org/progress": "^2.0.24",
"@nextui-org/react": "^2.2.9",
... | interiorly-preview | package.json | JSON | adcd7483deed44003efa403342d917cc6675c57d64a286d1d998fda06b0f35ce | 0 | 737 |
import type { Config } from "tailwindcss";
const { fontFamily } = require("tailwindcss/defaultTheme");
const config = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {... | interiorly-preview | tailwind.config.ts | TypeScript | a243c583cc1d3aa7aff5b07e816dc98f5d5758453c639c583cb1155f79d627f6 | 0 | 697 |
import "./globals.css";
import { Inter as FontSans } from "next/font/google";
import { cn } from "@/lib/utils";
import Header from "@/components/header";
import { Providers } from "@/components/providers";
import { Toaster } from "@/components/ui/sonner";
export const fontSans = FontSans({
subsets: ["latin"],
var... | interiorly-preview | app/layout.tsx | TypeScript | 75a95b818297c936a93109f48cbb7e60249b7329f0bea096736aaeb55810435c | 0 | 210 |
import { Gallery } from "@/components/gallery";
import { GenerationForm } from "@/components/generation-form";
import { Hero } from "@/components/hero";
import ResultCarousel from "@/components/result-carousel";
export default function Home() {
return (
<>
<div className="container py-10">
<div cla... | interiorly-preview | app/page.tsx | TypeScript | 8c23fce3034fab53708009fa9a184b312243d39345337215721a42e3c1a814b3 | 0 | 129 |
"use server";
import connectMongo from "@/lib/utils";
import ImageBatchModel from "@/models/imageBatch";
export async function saveImageBatch(imageBatch: ImageBatch) {
try {
await connectMongo();
ImageBatchModel.create(imageBatch);
return {
message: "Image batch saved successfully",
success:... | interiorly-preview | app/actions/db.ts | TypeScript | 17652a17011e372a34d456db52297f0ff85f90d3fb7b1b67bcec2edb78ecde45 | 0 | 270 |
import { BetaSignupSchema } from "@/schemas/beta";
import { Resend } from "resend";
import BetaJoinEmail from "@/components/mail/beta-join-email";
import { geolocation, ipAddress } from "@vercel/edge";
export const runtime = "edge";
const { RESEND_API_KEY, RESEND_BETA_AUDIENCE_ID } = process.env;
let regionNames = n... | interiorly-preview | app/api/beta/join/route.ts | TypeScript | 17582377d409ae29b6d414b2659b14a9b22ac8b6f5838f6f153fa978b1556e59 | 0 | 574 |
"use client";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-fo... | interiorly-preview | app/beta/page.tsx | TypeScript | 78c949ddfe16cc85ec8a319b63b4a1e63482a9440d54feef0f2e96de8ce6aea7 | 0 | 896 |
Input placeholder="John" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="lastName"
render={({ field }) => (
<FormItem... | interiorly-preview | app/beta/page.tsx | TypeScript | 25c125f0d1e0f4dd3f95eb664251f9d7f8d1488e8531c5d98bab85eda1446122 | 1 | 210 |
import Link from "next/link";
import { ArrowRightIcon } from "@radix-ui/react-icons";
import { Separator } from "@/components/ui/separator";
export function Announcement() {
return (
<Link
href="/beta"
className="inline-flex items-center rounded-lg bg-muted px-3 py-1 text-sm font-medium"
>
... | interiorly-preview | components/announcement.tsx | TypeScript | df77936be6b34135255ff0acc1f509f8cd8adbb6ca23a65594eb1e1f9f48484c | 0 | 179 |
"use client";
import { Button, buttonVariants } from "@/components/ui/button";
import { useImageGeneration } from "@/lib/hooks/use-images";
import Image from "next/image";
import { Separator } from "@/components/ui/separator";
import moment from "moment";
import {
Drawer,
DrawerClose,
DrawerContent,
DrawerDesc... | interiorly-preview | components/gallery.tsx | TypeScript | 5b3c8859fcaeca0a9c9e852d199b4874f728760633126e74706d6f63f9e58be4 | 0 | 896 |
={image}
alt="Generated Image"
width="0"
height="0"
className="w-full h-auto rounded-lg shadow-2xl"
/>
</div>
... | interiorly-preview | components/gallery.tsx | TypeScript | 8751f9b3b9ed33277d8be6638e074a669c040ad11e9c43de1beaf065c2f5b3fc | 1 | 394 |
"use client";
import { Button } from "@/components/ui/button";
import { z } from "zod";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { DEFAULT_PROMPTS } from "@/config/generation";
import { Icons } from "@/components/icons";
import { useImageGeneration } from... | interiorly-preview | components/generation-form.tsx | TypeScript | c21b78b7cd01816bed270f79a0f240c1ddb7c3188ff252e267d672da0c9b550f | 0 | 896 |
/span>
</Button>
</TooltipTrigger>
<TooltipContent>Randomize Prompt</TooltipContent>
</Tooltip>
</div>
{errors.prompt && (
<span className="text-red-600 text-sm">{errors.prompt.message}</span>
)}
<Button
type="submit"
... | interiorly-preview | components/generation-form.tsx | TypeScript | 75215f19551530089625b758d7342d913d08e214c80ac1d57d4ba94b5093c9bd | 1 | 174 |
import Link from "next/link";
import { siteConfig } from "@/config/site";
import { cn } from "@/lib/utils";
import { MobileNav } from "@/components/mobile-menu";
import { ModeToggle } from "@/components/mode-toggle";
import { Button, buttonVariants } from "@/components/ui/button";
import Logo from "@/components/logo";... | interiorly-preview | components/header.tsx | TypeScript | 98f840ac663ee07044e9229b10f9dc15c6468ac7ad468c3d7af75f9a135230c5 | 0 | 485 |
import { cn } from "@/lib/utils";
import Link from "next/link";
import { buttonVariants } from "@/components/ui/button";
import { Announcement } from "./announcement";
export function Hero() {
return (
<div className="space-y-1">
<Announcement />
<h1 className="text-5xl md:text-6xl font-extrabold lea... | interiorly-preview | components/hero.tsx | TypeScript | 3b5ba737b4a830989b950f1f8f57fd6efad6497ed1546da9238d2b03518703ed | 0 | 389 |
import {
AlertTriangle,
ArrowRight,
Check,
ChevronLeft,
ChevronRight,
Command,
CreditCard,
File,
FileText,
HelpCircle,
Image,
Laptop,
Loader2,
LucideProps,
Moon,
MoreVertical,
Pizza,
Plus,
Settings,
SunMedium,
Trash,
Twitter,
User,
X,
// @ts-ignore
type Icon as Lucide... | interiorly-preview | components/icons.tsx | TypeScript | a55afe67b6b7e55d04b5ee500bf34160fb9b8662447f4e546f8d4d354e24d86c | 0 | 896 |
15.794 15.1925 15.0882 14.3212 14.1992C14.2244 14.1101 14.1108 14.0413 13.9869 13.997C13.8631 13.9526 13.7316 13.9336 13.6003 13.9411C13.4689 13.9486 13.3404 13.9823 13.2224 14.0404C13.1044 14.0985 12.9992 14.1797 12.9132 14.2792L12.9002 14.2992C12.7321 14.4947 12.646 14.7477 12.66 15.0052C12.674 15.2628 12.7869 15.504... | interiorly-preview | components/icons.tsx | TypeScript | ea25be48bcb0f43b50120bc09bf9b7ccca3f0bce5a3840c6e5ec8ea04bf43c4b | 1 | 896 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.