export default function Page() { const august2025 = [ { image: august2025a, name: "Paradise Paws", url: "https://res1.applovin.com/ob7cb6fc/a94a6254544ffef2fdaf46c42da364464b74ac1e_v1_raw.html" }, { image: august2025b, name: "Paradise Paws", url: "https://res1.applovin.com/ob7cb6fc/d6232641ba18a60853fac6a47a1796b8cfbb50ed_v1_raw.html" }, ]; const july2025 = [ { image: july2025a, name: "Disney Magic Match", url: "https://res1.applovin.com/o33c3075/375efe005f372f6f863c0985e37d592413a0cebc_v1_raw.html" }, { image: july2025b, name: "Merge Dragons", url: "https://res1.applovin.com/o33c3075/3dcc077b51efc1c4a2efa78d759ec9174072b2b3_v1_raw.html" }, { image: july2025c, name: "Paradise Paws", url: "https://res1.applovin.com/o33c3075/0c35aab2f535cd077ffa5784b1bb93baf3324900_v1_raw.html" }, { image: july2025d, name: "Paradise Paws", url: "https://res1.applovin.com/o33c3075/50463b490a89ada2c2d451d6e91d69c007d44051_v1_raw.html" }, { image: july2025e, name: "Rupaul’s Drag Race Match Queen", url: "https://res1.applovin.com/o33c3075/6fcda272dddda678642ceb85500de5ae2027d71d_v1_raw.html" }, { image: july2025f, name: "Tile Match - Tiletopia", wins: [ { name: "MIP O1", url: "https://res1.applovin.com/o33c3075/8f915bdb7343a3b87c2987340766f50b6bc69088_v1_raw.html" }, { name: "MIP O2", url: "https://res1.applovin.com/o33c3075/0618ea7d3fbb36a5523cdc3659c92c9686d0a586_v1_raw.html" }, { name: "SIP O1", url: "https://res1.applovin.com/o33c3075/87ceb0518eaa6323760ad0ff7c18d8dfcdfff76e_v1_raw.html" }, ] }, ]; const june2025 = [ { image: june2025a, name: "Goodwill Tiles", url: "https://res1.applovin.com/o25a01af/2ea09ef92ed05a37fac3affe9e2c84935037d091_v1_raw.html" }, { image: june2025b, name: "Flambe", url: "https://res1.applovin.com/oe8f937c/026fa39469513a34c87d675647501b815f92cbc7_v1_raw.html" }, ]; const may2025 = [ { image: may2025a, name: "Best Friends", url: "https://res1.applovin.com/obafd3e5/1702767c1b665b2a4a1cea584873f1e744896cf7_v1_raw.html" }, { image: may2025b, name: "Hexago", url: "https://res1.applovin.com/o859dfcb/5e7082c665991bd7698d56985c26753f0f431cd4_v1_raw.html" }, { image: may2025c, name: "Merge Restaurant", url: "https://res1.applovin.com/oc79b69a/0551185b9037bd277112776b29580ba8a6c9bdbc_v1_raw.html" }, ];
const decks = [ { name: "August 2025", cards: august2025, }, { name: "July 2025", cards: july2025, }, { name: "June 2025", cards: june2025, }, { name: "May 2025", cards: may2025, }, ];
return ( <> {decks.map((deck) => (
</> );
}