"use client"; import Link from "next/link"; import { motion } from "framer-motion"; interface IGPU { title: string; subTitle: string; price: string; isRecentlyPurchased?: boolean; link: string; } export default function Boxes() { const gpus: IGPU[] = [ { title: "NVIDIA RTX A4000", subTitle: "16GB GDDR6 - 6144 CUDA Cores", price: "$0.20/hour ($147/mo)", isRecentlyPurchased: true, link: "https://nowpayments.io/payment?iid=5964763281", }, { title: "NVIDIA RTX A5000", subTitle: "24 GB GDDR6 - 8192 CUDA Cores", price: "$0.26/hr ($190/month)", link: "https://nowpayments.io/payment?iid=4873013025", }, { title: "4x NVIDIA RTX 4090", subTitle: "24 GB GDDR6X - 16384 GPU CUDA Cores", price: "$0.37/hr ($268/month)", link: "https://nowpayments.io/payment?iid=5977605820", }, { title: "NVIDIA V100", subTitle: "32 GB HBM2 - 5120 CUDA Cores", price: "$0.44/hr ($317/month)", link: "https://nowpayments.io/payment?iid=5437270588", }, { title: "NVIDIA L4 Ada", subTitle: "24 GB GDDR6 - 7680 CUDA Cores", price: "$0.52/hr ($372/month)", link: "https://nowpayments.io/payment?iid=6283623234", }, { title: "NVIDIA RTX A6000", subTitle: "48 GB GDDR6 - 10752 CUDA Cores", price: "$0.53/hr ($380/month)", link: "https://nowpayments.io/payment?iid=6074730706", }, { title: "NVIDIA L40S Ada", subTitle: "48 GB GDDR6 - 18176 CUDA Cores", price: "$1.24/hr ($890/month)", link: "https://nowpayments.io/payment?iid=4570621084", }, { title: "NVIDIA A100 PCIe", subTitle: "40 GB HBM2 - 6912 CUDA Cores", price: "$1.62/hr ($1,166/month)", link: "https://nowpayments.io/payment?iid=6381921922", }, { title: "NVIDIA H100 NVL", subTitle: "94 GB HBM3 - 14592 CUDA Cores", price: "$3.35/hr ($2,410/month)", link: "https://nowpayments.io/payment?iid=5319698362", }, { title: "NVIDIA H100 SXM", subTitle: "80 GB HBM3 - 14592 CUDA Cores", price: "$3.60/hr ($2,592/month)", link: "https://nowpayments.io/payment?iid=4768823499", }, ]; return (
{gpu.title}
{gpu.subTitle}
{gpu.price}
{gpu.isRecentlyPurchased && (Recently purchased
)}