import { SignInForm } from "@/app/(pages)/(auth)/_components/signin-form"; import { Message } from "@/app/_components/form-message"; import { Button } from "@/app/_components/ui/button"; import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from "@/app/_components/ui/carousal"; import { GalleryVerticalEnd, Globe, QuoteIcon } from "lucide-react"; const carouselContent = [ { quote: "Tried @supabase for the first time yesterday. Amazing tool! I was able to get my Posgres DB up in no time and their documentation on operating on the DB is super easy! 👏 Can't wait for Cloud functions to arrive! It's gonna be a great Firebase alternative!", author: "@codewithbhargav", image: "https://github.com/shadcn.png", }, { quote: "Check out this amazing product @supabase. A must give try #newidea #opportunity", author: "@techenthusiast", image: "https://github.com/shadcn.png", }, { quote: "Check out this amazing product @supabase. A must give try #newidea #opportunity", author: "@dataguru", image: "https://github.com/shadcn.png", }, ]; export default async function Login(props: { searchParams: Promise }) { return (
Sigap Tech.
{carouselContent.map((item, index) => (

{item.quote}

Profile

{item.author}

))}
); }