29 | Enter the URL of a Solana Action or Blink 30 |
31 |
21 | We must have blinked too fast.
22 |
23 | We could not find the page you are looking for.
24 |
94 | Interface with users anywhere you can post a (b)link. 95 |
96 |132 | Discover the growing ecosystem of tooling and resources for Solana 133 | Actions and blinks. 134 |
135 |{item.description}
156 |403 | {JSON.stringify(inspector.getResponse.data, null, "\t")} 404 |*/} 405 |
27 | {data ? JSON.stringify(data, null, "\t") : errorMessage} 28 |29 | ); 30 | } 31 | -------------------------------------------------------------------------------- /src/components/main-nav.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import * as React from "react"; 4 | import Link from "next/link"; 5 | import { useSelectedLayoutSegment } from "next/navigation"; 6 | 7 | import { MainNavItem } from "@/types"; 8 | import { siteConfig } from "@/config/site"; 9 | import { cn } from "@/lib/utils"; 10 | import { Icons } from "@/components/icons"; 11 | import { MobileNav } from "@/components/mobile-nav"; 12 | import { Button } from "@/components/ui/button"; 13 | import { EyeIcon } from "lucide-react"; 14 | 15 | interface MainNavProps { 16 | items?: MainNavItem[]; 17 | children?: React.ReactNode; 18 | } 19 | 20 | export function MainNav({ items, children }: MainNavProps) { 21 | const segment = useSelectedLayoutSegment(); 22 | const [showMobileMenu, setShowMobileMenu] = React.useState
162 | {body} 163 |
164 | ); 165 | }); 166 | FormMessage.displayName = "FormMessage"; 167 | 168 | export { 169 | useFormField, 170 | Form, 171 | FormItem, 172 | FormLabel, 173 | FormControl, 174 | FormDescription, 175 | FormMessage, 176 | FormField, 177 | }; 178 | -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | 3 | import { cn } from "@/lib/utils"; 4 | 5 | export interface InputProps 6 | extends React.InputHTMLAttributes