import React from "react"; // Single-file React component styled with Tailwind CSS // Usage: place this component in your React app (e.g. create-react-app or Next.js) and ensure Tailwind is configured. export default function iPhone17Lander() { const promoCode = "SAVE90"; const handleCopy = async () => { try { await navigator.clipboard.writeText(promoCode); const el = document.getElementById("copyStatus"); if (el) { el.textContent = "Copied!"; setTimeout(() => (el.textContent = "Copy code"), 2000); } } catch (e) { alert("Failed to copy. Your code: " + promoCode); } }; return (
{/* Left: Hero */}
Limited time • 90% OFF

iPhone 17 — Next level sleek

The future in your hand. Supercharged performance, unbelievable battery life, and a camera system that captures every detail. This special launch promo gives you an exclusive 90% discount for a very limited time.

Claim 90% Off
Use code
{promoCode}
Free shipping
30-day returns
Secure checkout
Why this offer?
A special promotional launch to reward early supporters. Limited stock — price will return to normal after allocation is used.
{/* Right: Product visual */} {/* Full-width checkout block */}
Your order
iPhone 17 — 256GB
Use promo code at checkout to apply the 90% discount.
$99
Buy now
); }