Mon - Sat: 9:00 am - 6:00 pm
Explore cars

The easy way to takeover a lease

Live in Delhi , Noida and Gurugram!

Get started with 4 simple steps

  • Create a profile

    If you are going to use a passage of Lorem Ipsum, you need to be sure.

    Get started
  • Tell us what car you want

    Various versions have evolved over the years, sometimes by accident, sometimes on purpose

  • Match with seller

    It to make a type specimen book. It has survived not only five centuries, but also the leap into electronic

  • Make a deal

    There are many variations of passages of Lorem available, but the majority have suffered alteration

  • import { sql } from "@vercel/postgres"; export default async function Cart({ params }) { const { rows } = await sql`SELECT * from CARTS where user_id=${params.user}`; return (
    {rows.map((row) => (
    {row.id} - {row.quantity}
    ))}
    ); }