import Image from "next/image"; import Link from "next/link"; import { t } from "@lingui/core/macro"; import { Trans } from "@lingui/react/macro"; import { IoLogoGithub, IoLogoHackernews } from "react-icons/io"; import Button from "~/components/Button"; import { PageHead } from "~/components/PageHead"; import { useTheme } from "next-themes"; import Cta from "./components/Cta"; import FAQs from "./components/Faqs"; import Features from "./components/Features"; import Layout from "./components/Layout"; import Pricing from "./components/Pricing"; export default function HomeView() { const { resolvedTheme } = useTheme(); const isDarkMode = resolvedTheme === "dark"; return (
{t`Star on Github`}
{/*
{t`#1 Hacker News`}
*/}

The open source
alternative to Trello

{t`A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.`}

{t`No credit card required`}

kanban kanban
); }