-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Description
// package.json { "name": "grdpress-ecommerce", "version": "1.0.0", "scripts": { "dev": "next dev", "build": "next build", "start": "next start" }, "dependencies": { "next": "13.4.12", "react": "18.2.0", "react-dom": "18.2.0" } }
// next.config.js const nextConfig = {} module.exports = nextConfig
// pages/index.tsx import React from "react"; import Script from "next/script";
export default function Home() { const handlePayment = () => { const options = { key: "RAZORPAY_KEY_ID", // Replace with your Razorpay Key ID amount: 199900, currency: "INR", name: "GRD PRESS", description: "Engraved Visitors' Book", image: "/logo.png", handler: function (response) { alert("Payment successful! Payment ID: " + response.razorpay_payment_id); window.location.href = "/thank-you"; }, prefill: { name: "", email: "", contact: "" }, theme: { color: "#f43f5e" } }; const rzp = new window.Razorpay(options); rzp.open(); };
return (

GRD PRESS
Premium Engraved Visitor Books for Elite Institutions
); }
// pages/thank-you.tsx export default function ThankYou() { return (