import React, { useMemo, useState } from "react"; import { BookOpen, Library, LogIn, Upload, ShoppingCart, Search, Star, Shield, CreditCard, User, ChevronLeft, ChevronRight, Menu, X, Sparkles } from "lucide-react"; import { motion, AnimatePresence } from "framer-motion"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Badge } from "@/components/ui/badge"; const sampleBooks = [ { id: 1, title: "The Lantern of Courage", author: "Jay Umboh", price: 6.99, age: "4–8", category: "Courage", cover: "https://images.unsplash.com/photo-1516979187457-637abb4f9353?q=80&w=1200&auto=format&fit=crop", description: "A heartfelt journey through the night where a child learns to see beauty in the dark.", featured: true, rating: 4.9, pages: [ { title: "Cover", text: "The Lantern of Courage\nBy Jay Umboh", }, { title: "Page 1", text: "Once upon a time, in a cozy town, there lived a little boy who loved adventure but feared the dark.", }, { title: "Page 2", text: "One magical evening, Grandma invited him on a journey to discover the beauty hidden in the night.", }, { title: "Page 3", text: "With each step, the darkness felt less scary and more like a world full of wonder.", }, { title: "Page 4", text: "At the end of the journey, he found the Lantern of Courage glowing softly in the moonlight.", }, ], }, { id: 2, title: "Milo and the Moon Kite", author: "Ava Rowan", price: 4.99, age: "3–7", category: "Imagination", cover: "https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?q=80&w=1200&auto=format&fit=crop", description: "A dreamy bedtime adventure about a kite that sails across the moon.", featured: false, rating: 4.8, pages: [ { title: "Cover", text: "Milo and the Moon Kite" }, { title: "Page 1", text: "Milo built a kite that shimmered like starlight." }, { title: "Page 2", text: "One windy night, it pulled him into a silver sky." }, { title: "Page 3", text: "He learned that bravery often feels like wonder first." }, ], }, { id: 3, title: "Penny's Tiny Garden", author: "Lena Hart", price: 3.99, age: "2–6", category: "Nature", cover: "https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?q=80&w=1200&auto=format&fit=crop", description: "A gentle story about patience, planting, and little miracles.", featured: false, rating: 4.7, pages: [ { title: "Cover", text: "Penny's Tiny Garden" }, { title: "Page 1", text: "Penny planted seeds in the tiniest patch of dirt." }, { title: "Page 2", text: "Every day she watered them and waited." }, { title: "Page 3", text: "Soon, color bloomed where hope had been planted." }, ], }, ]; const initialLibrary = [1, 2]; const publisherUploads = [ { title: "The Lantern of Courage", status: "Published", sales: 142, revenue: "$993" }, { title: "Milo and the Moon Kite", status: "Draft", sales: 0, revenue: "$0" }, ]; function Reader({ book, onBack }) { const [page, setPage] = useState(0); const current = book.pages[page]; return (
Digital Reader
{book.title}
by {book.author}
Page {page + 1} of {book.pages.length}
{current.title}
{book.title}
Interactive Illustration Space
In production, this area can render uploaded illustrated spreads, animated page turns, zoom, read-aloud, and mobile swipe gestures.
{book.title}
by {book.author}
{book.description}
Sell digital children’s books with a bookstore, reader, and family library.
This concept includes author uploads, customer accounts, ebook checkout, a personal library, and a page-turn reading experience built specifically for illustrated books.
For readers
Instant ebook purchases
For authors
Upload and manage books
For families
Shelf of purchased stories
Featured book
{featured.title}
by {featured.author}
${featured.price.toFixed(2)}
Browse the bookstore
Search by title, author, or theme.
{item.title}
{item.text}
Customer account
My Library
Purchased ebooks live here permanently for the customer.
{book.title}
{book.author}
Upload illustrated books, set pricing, manage metadata, and publish to your storefront.
Upload ebook files and cover art
Production version would support PDF-to-reader conversion, EPUB upload, covers, previews, and thumbnail generation.
{item.title}
{item.status}
Sales
{item.sales}
Revenue
{item.revenue}
Reader Account
Parent / guardian profile
{label}
{value}