Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.mdx #75428

Open
wants to merge 1 commit into
base: canary
Choose a base branch
from
Open

Update index.mdx #75428

wants to merge 1 commit into from

Conversation

SETHOOOO84
Copy link

import { Check } from "lucide-react";

const packages = [
{
id: 1,
coins: 100,
bonus: 0,
price: "$0.99",
},
{
id: 2,
coins: 500,
bonus: 50,
price: "$4.99",
},
{
id: 3,
coins: 1000,
bonus: 200,
price: "$9.99",
},
{
id: 4,
coins: 2000,
bonus: 500,
price: "$19.99",
},
];

function CoinPackages() {
return (


{packages.map((pkg) => (


{pkg.coins} Coins


{pkg.bonus > 0 && (


+ {pkg.bonus} Bonus


)}

{pkg.price}



Buy Now


))}

);
}

function PaymentMethods() {
return (


Payment Methods




Mastercard


Visa


PayPal



);
}

function TermsAndConditions() {
return (



By purchasing coins, you agree to our{" "}

Terms of Service
{" "}
and{" "}

Privacy Policy

.



);
}

export default function CoinPage() {
return (



Buy Coins







);
}

@ijjk ijjk added the Documentation Related to Next.js' official documentation. label Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Documentation Related to Next.js' official documentation.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants