/** biome-ignore-all lint/suspicious/noArrayIndexKey: Would need to look into this trivial issue */ "use client"; import defaultMdxComponents from "fumadocs-ui/mdx"; import { cn } from "fumadocs-ui/utils/cn"; import { BlocksIcon, GitMergeIcon, HomeIcon, SailboatIcon, ZapIcon, } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import { useState } from "react"; import { buttonVariants } from "@/components/ui/button"; import CkanDevstallerDemo from "./ckan-devstaller-demo.gif"; export default function HomePage() { const gridColor = "color-mix(in oklab, var(--color-fd-primary) 10%, transparent)"; const { Card, Cards } = defaultMdxComponents; return ( <>
} href="/docs/quick-start" title="Quick start" > Get started with ckan-devstaller and install CKAN within minutes } href="/docs/builder" title="Builder"> Customize your installation with an interactive web GUI } href="/docs/reference/installation-architecture" title="Installation architecture" > Learn about where files are installed after running ckan-devstaller } href="https://github.com/dathere/ckan-devstaller" title="Source code" > View the source code of ckan-devstaller on GitHub
); } function Hero() { return (

ckan-devstaller

ckan-devstaller{" "}
Launch CKAN dev instances within minutes.

ckan-devstaller is a command-line tool to automate installing CKAN for development using ckan-compose on a new Ubuntu 22.04 instance.

Provided by{" "} datHere .

Get Started Source Code
); } function PreviewImages() { const [active, setActive] = useState(0); const previews = [ { image: CkanDevstallerDemo, name: "Demo", }, ]; return (
{/*
*/} {/* {previews.map((item, i) => ( ))} */}
{previews.map((item, i) => ( preview ))}
); }