Float Image
Float Image
import React from "react"; import { motion } from "framer-motion"; import { Check, PlayCircle, Waves, Sparkles, Star, Shield, Clock, Headphones } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; // Simple container const Section = ({ id, className = "", children }: React.PropsWithChildren<{ id?: string; className?: string }>) => (
{children}
); const Feature = ({ icon: Icon, title, desc }: { icon: any; title: string; desc: string }) => (

{title}

{desc}

); const Included = ({ items }: { items: string[] }) => (
    {items.map((t, i) => (
  • {t}
  • ))}
); export default function SalesPage() { return (
{/* Header */}
Clear Your Mind
{/* Hero */}
New: Upgraded Program

Unlock Deeper Calm with the Clear Your Mind Upgrade

A complete meditation & mindfulness expansion—guided audios, step-by-step trainings, and done-for-you materials to reduce stress, boost clarity, and stay productive.

14‑day money‑back guarantee Start in minutes

Guided Meditations & Audios

Immerse yourself in calming, high‑quality tracks while building a sustainable practice.

What’s Included
  • Training videos
  • Guided audios
  • Sales & promo assets
{/* Social proof */}
Trusted by 2,000+ learners seeking clarity & calm
{/* Benefits */}
{/* What’s included */}

What You Get Inside

Everything you need to elevate your practice—and the assets to share it with others.

Guided Audio Preview

Press play to sample the calm. (Placeholder player)

Sales Assets
  • Sales & affiliate pages ready to publish
  • Promo swipes for email & social
  • Graphics: covers, banners, ad creatives
{/* Pricing */}

Choose Your Access

Instant digital access. Secure checkout. Start today.

Upgrade Package
$197
$297

14‑day money‑back guarantee

{/* Testimonials */}
{["I felt calmer in days.", "The assets made launching easy.", "Exactly what I needed to stay consistent."].map((quote, i) => (

“{quote}”

— Happy Customer
))}
{/* FAQ */}

Frequently Asked Questions

How quickly can I start?

Immediately. After checkout, you get instant digital access.

Do I need experience?

No. The trainings are beginner‑friendly and effective for seasoned meditators.

Can I resell this?

Yes. Includes MRR license and legal pages. Follow the included terms.

Refund policy?

Try it risk‑free for 14 days. If it’s not a fit, request a refund.

{/* Footer */}
); }
Float Image