Card example with CTA button:

'use client'

    import Link from 'next/link'
    import { Navbar } from 'flowbite-react'

    function Component() {
    return (
        <Navbar fluid rounded>
        <Navbar.Brand as={Link} href="https://flowbite-react.com">
            <img
            src="/favicon.svg"
            className="mr-3 h-6 sm:h-9"
            alt="Flowbite React Logo"
            />
            <span className="self-center whitespace-nowrap text-xl font-semibold">
            Flowbite React
            </span>
        </Navbar.Brand>
        </Navbar>
    )
    }

Configure Tailwind CSS and Flowbite before copying the code