"use client"; import {Button, Link} from "@nextui-org/react"; import {ArrowRightIcon} from "@nextui-org/shared-icons"; import {clsx} from "@nextui-org/shared-utils"; import NextLink from "next/link"; import {Code} from "@nextui-org/react"; import {FeaturesGrid} from "./features-grid"; import {sectionWrapper, subtitle, title} from "@/components/primitives"; import {GithubIcon, NoteLinearIcon, NextJsIcon} from "@/components/icons"; import {useIsMounted} from "@/hooks/use-is-mounted"; import {trackEvent} from "@/utils/va"; const bannerSuggestions = [ { title: "Getting Started", description: "Make beautiful, modern, and fast websites/applications regardless of your design experience.", icon: , href: "/docs/guide/installation", }, { title: "NextUI + Next.js", description: ( <> NextUI is fully compatible with the new Next.js 13 app/ directory structure. ), icon: , href: "/docs/frameworks/nextjs", }, ]; export const InstallBanner = () => { const isMounted = useIsMounted(); return (

Let's make the

Web 

Prettier

Experience it firsthand and show us your creations!

); };