This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from "react" | |
import { cva, type VariantProps } from "class-variance-authority" | |
import { cn } from "@/lib/utils" | |
const badgeVariants = cva( | |
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", | |
{ | |
variants: { | |
variant: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ArrowRight } from "lucide-react"; | |
import Link from "next/link"; | |
import Image from "next/image"; | |
import { Button } from "@/components/ui/button"; | |
export function HeroCentered() { | |
return ( | |
<section className="container flex flex-col items-center gap-8 pb-28 pt-20 sm:gap-10"> | |
<div className="flex cursor-pointer items-center gap-1 rounded-full border bg-secondary px-3 py-0.5 hover:bg-secondary/60"> |