| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Reacheese - Magical photobooth</title> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| <style> |
| *, *::before, *::after { |
| box-sizing: border-box; |
| margin: 0; |
| padding: 0; |
| } |
| |
| :root { |
| --background: hsl(240 7% 97%); |
| --foreground: hsl(240 10% 3.9%); |
| --card: hsl(0 0% 100%); |
| --card-foreground: hsl(240 10% 3.9%); |
| --primary: hsl(36 100% 50%); |
| --primary-foreground: hsl(0 0% 100%); |
| --muted: hsl(240 4.8% 95.9%); |
| --muted-foreground: hsl(240 3.8% 46.1%); |
| --border: hsl(240 5.9% 90%); |
| } |
| |
| body { |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; |
| background-color: var(--background); |
| color: var(--foreground); |
| line-height: 1.6; |
| min-height: 100vh; |
| } |
| |
| .container { |
| max-width: 72rem; |
| margin: 0 auto; |
| padding: 0 1.5rem; |
| } |
| |
| |
| .hero { |
| padding: 4rem 0; |
| } |
| |
| .hero-grid { |
| display: grid; |
| grid-template-columns: 1fr; |
| gap: 3rem; |
| align-items: center; |
| } |
| |
| @media (min-width: 768px) { |
| .hero-grid { |
| grid-template-columns: 1fr 1fr; |
| } |
| } |
| |
| .hero video { |
| width: 100%; |
| max-width: 700px; |
| border-radius: 0.5rem; |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); |
| } |
| |
| .hero-content { |
| text-align: left; |
| } |
| |
| .hero-title-wrapper { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 1rem; |
| margin-bottom: 1.5rem; |
| } |
| |
| .hero-emoji { |
| font-size: 3.75rem; |
| } |
| |
| .hero-title { |
| font-size: 3rem; |
| font-weight: 700; |
| color: var(--foreground); |
| } |
| |
| .tags { |
| display: flex; |
| flex-wrap: wrap; |
| justify-content: center; |
| gap: 0.5rem; |
| margin-bottom: 1.5rem; |
| } |
| |
| .tag { |
| display: inline-flex; |
| align-items: center; |
| padding: 0.25rem 0.75rem; |
| font-size: 0.75rem; |
| font-weight: 500; |
| border-radius: 9999px; |
| background-color: rgba(255, 153, 0, 0.15); |
| color: var(--primary); |
| } |
| |
| .hero-description { |
| font-size: 1.125rem; |
| color: var(--muted-foreground); |
| max-width: 600px; |
| margin: 0 auto; |
| } |
| |
| .hero-description strong { |
| color: var(--foreground); |
| } |
| |
| |
| .technical { |
| padding: 4rem 0; |
| background-color: var(--card); |
| } |
| |
| .technical-grid { |
| display: grid; |
| grid-template-columns: 1fr; |
| gap: 4rem; |
| align-items: flex-start; |
| } |
| |
| @media (min-width: 768px) { |
| .technical-grid { |
| grid-template-columns: 1fr 1fr; |
| } |
| } |
| |
| .technical h2 { |
| font-size: 1.5rem; |
| font-weight: 700; |
| color: var(--foreground); |
| margin-bottom: 1rem; |
| margin-top: 2rem; |
| } |
| |
| .steps { |
| list-style: none; |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| } |
| |
| .step { |
| display: flex; |
| align-items: flex-start; |
| gap: 1rem; |
| color: var(--muted-foreground); |
| } |
| |
| .step-number { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| min-width: 1.75rem; |
| height: 1.75rem; |
| border-radius: 9999px; |
| background-color: var(--primary); |
| color: white; |
| font-size: 0.875rem; |
| font-weight: 600; |
| } |
| |
| .step-content { |
| display: flex; |
| flex-direction: column; |
| gap: 0.25rem; |
| } |
| |
| .step-title { |
| font-size: 0.875rem; |
| font-weight: 600; |
| color: var(--foreground); |
| } |
| |
| .step-body { |
| font-size: 0.875rem; |
| color: var(--muted-foreground); |
| } |
| |
| .step-body a { |
| color: var(--muted-foreground); |
| text-decoration: underline; |
| transition: color 0.2s; |
| } |
| |
| .step-body a:hover { |
| color: var(--primary); |
| } |
| |
| .technical video { |
| width: 100%; |
| border-radius: 0.5rem; |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); |
| } |
| |
| |
| .features-section { |
| padding: 4rem 0; |
| background-color: var(--card); |
| } |
| |
| .features-section h2 { |
| font-size: 2.25rem; |
| font-weight: 700; |
| text-align: center; |
| margin-bottom: 1rem; |
| } |
| |
| .features-section .subtitle { |
| color: var(--muted-foreground); |
| text-align: center; |
| max-width: 42rem; |
| margin: 0 auto 3rem; |
| } |
| |
| .features-grid { |
| display: grid; |
| grid-template-columns: repeat(1, 1fr); |
| gap: 1.5rem; |
| } |
| ul { list-style: none; } |
| li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; font-size: 0.875rem; } |
| .swatch { width: 1.25rem; height: 1.25rem; border-radius: 50%; flex-shrink: 0; } |
| |
| @media (min-width: 768px) { |
| .features-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| } |
| |
| @media (min-width: 1024px) { |
| .features-grid { |
| grid-template-columns: repeat(3, 1fr); |
| } |
| } |
| |
| .feature-card { |
| background-color: var(--card); |
| border-radius: 0.75rem; |
| padding: 1.5rem; |
| box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| border: 1px solid var(--border); |
| transition: box-shadow 0.3s ease; |
| } |
| |
| .feature-card:hover { |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); |
| } |
| |
| .feature-icon { |
| width: 3rem; |
| height: 3rem; |
| border-radius: 0.5rem; |
| background-color: rgba(255, 153, 0, 0.15); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| margin-bottom: 1rem; |
| color: var(--primary); |
| } |
| |
| .feature-icon svg { |
| width: 1.5rem; |
| height: 1.5rem; |
| } |
| |
| .feature-card h3 { |
| font-size: 1.125rem; |
| font-weight: 600; |
| color: var(--card-foreground); |
| margin-bottom: 0.5rem; |
| } |
| |
| .feature-card p { |
| color: var(--muted-foreground); |
| font-size: 0.875rem; |
| line-height: 1.6; |
| } |
| |
| |
| footer { |
| background-color: var(--background); |
| border-top: 1px solid var(--border); |
| padding: 3rem 0; |
| } |
| |
| .footer-grid { |
| display: grid; |
| grid-template-columns: 1fr; |
| gap: 2rem; |
| margin-bottom: 2rem; |
| } |
| |
| @media (min-width: 768px) { |
| .footer-grid { |
| grid-template-columns: repeat(3, 1fr); |
| } |
| } |
| |
| .footer-section h4 { |
| font-size: 0.875rem; |
| font-weight: 600; |
| color: var(--foreground); |
| margin-bottom: 0.75rem; |
| } |
| |
| .footer-section ul { |
| list-style: none; |
| display: flex; |
| flex-direction: column; |
| gap: 0.5rem; |
| } |
| |
| .footer-section a { |
| font-size: 0.875rem; |
| color: var(--muted-foreground); |
| text-decoration: none; |
| transition: color 0.2s; |
| } |
| |
| .footer-section a:hover { |
| color: var(--primary); |
| } |
| |
| .social-links { |
| display: flex; |
| gap: 0.75rem; |
| } |
| |
| .social-link { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: 2.25rem; |
| height: 2.25rem; |
| border-radius: 9999px; |
| background-color: var(--muted); |
| color: var(--muted-foreground); |
| transition: all 0.2s; |
| } |
| |
| .social-link:hover { |
| background-color: var(--primary); |
| color: white; |
| } |
| |
| .social-link svg { |
| width: 1.25rem; |
| height: 1.25rem; |
| } |
| |
| .footer-credit { |
| font-size: 0.875rem; |
| color: var(--muted-foreground); |
| text-align: center; |
| padding-top: 1.5rem; |
| border-top: 1px solid var(--border); |
| } |
| |
| .footer-credit a { |
| color: var(--foreground); |
| font-weight: 600; |
| text-decoration: none; |
| transition: color 0.2s; |
| } |
| |
| .footer-credit a:hover { |
| color: var(--primary); |
| } |
| </style> |
| </head> |
| <body> |
|
|
| |
| <section class="hero"> |
| <div class="container"> |
| <div class="hero-grid"> |
| <div> |
| <video autoplay loop muted playsinline> |
| <source src="assets/demo-reachy-mini-photobooth.mp4" type="video/mp4" /> |
| </video> |
| </div> |
|
|
| <div class="hero-content"> |
| <div class="hero-title-wrapper"> |
| <span class="hero-emoji">📸</span> |
| <h1 class="hero-title">Reacheese</h1> |
| </div> |
|
|
| <div class="tags"> |
| <span class="tag">Photo</span> |
| <span class="tag">Interaction</span> |
| <span class="tag">Entertainment</span> |
| <span class="tag">AI vision</span> |
| </div> |
|
|
| <p class="hero-description"> |
| <strong>AI Photobooth for instant magic transformations</strong><br /> |
| Reacheese uses Reachy Mini’s AI to capture your portrait and instantly transform you into any character you want. Simply scan the QR code to claim your masterpiece. |
| </p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="technical"> |
| <div class="container"> |
| <div class="technical-grid"> |
| <div> |
| <h2>How it works</h2> |
| <ol class="steps"> |
| <li class="step"> |
| <span class="step-number">1</span> |
| <div class="step-content"> |
| <div class="step-title">Connect Reachy Mini & launch the app</div> |
| <div class="step-body"> |
| Connect to your Reachy Mini, navigate to the "Applications" tab, find "Reacheese", click on "Start", then "open" (make sure you already have the <a href="https://hf.co/reachy-mini/#download" target="_blank" rel="noreferrer">dashboard</a> installed). |
| </div> |
| </div> |
| </li> |
| <li class="step"> |
| <span class="step-number">2</span> |
| <div class="step-content"> |
| <div class="step-title">Set API Keys</div> |
| <div class="step-body">OpenAI API key for voice conversations, and Gemini API key for AI-generated transformation. Get a free Gemini API key <a href="https://aistudio.google.com/api-keys" target="_blank" rel="noreferrer">here</a>.</div> |
| </div> |
| </li> |
| <li class="step"> |
| <span class="step-number">3</span> |
| <div class="step-content"> |
| <div class="step-title">Click on "Open Photobooth"</div> |
| <div class="step-body">Reachy Mini will begin to chat with you to know what you're dreaming of.</div> |
| </div> |
| </li> |
| <li class="step"> |
| <span class="step-number">4</span> |
| <div class="step-content"> |
| <div class="step-title">Scan the QR code</div> |
| <div class="step-body">Take the picture and retrieve your photo by scaning the QR Code.</div> |
| </div> |
| </li> |
| </ol> |
| </div> |
|
|
| <div> |
| <video autoplay loop muted playsinline> |
| <source src="assets/install-and-demo-reacheese.mp4" type="video/mp4" /> |
| </video> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
|
|
| |
| <footer> |
| <div class="container"> |
| <div class="footer-grid"> |
| <div class="footer-section"> |
| <h4>Resources</h4> |
| <ul> |
| <li><a href="https://huggingface.co/docs/reachy_mini/index" target="_blank" rel="noopener noreferrer">Read the Documentation</a></li> |
| <li><a href="https://huggingface.co/docs/reachy_mini/troubleshooting" target="_blank" rel="noopener noreferrer">Troubleshooting & FAQ</a></li> |
| </ul> |
| </div> |
|
|
| <div class="footer-section"> |
| <h4>Reachy Mini Apps</h4> |
| <ul> |
| <li><a href="https://hf.co/reachy-mini/#apps" target="_blank" rel="noopener noreferrer">Browse other apps</a></li> |
| <li><a href="https://huggingface.co/blog/pollen-robotics/make-and-publish-your-reachy-mini-apps" target="_blank" rel="noopener noreferrer">Make and publish your own app</a></li> |
| </ul> |
| </div> |
|
|
| <div class="footer-section"> |
| <h4>Follow us</h4> |
| <div class="social-links"> |
| <a href="https://discord.gg/2bAhWfXme9" target="_blank" rel="noopener noreferrer" aria-label="Discord" class="social-link"> |
| <svg viewBox="0 0 24 24" fill="currentColor"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg> |
| </a> |
| <a href="https://www.linkedin.com/company/pollen-robotics" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn" class="social-link"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect width="4" height="12" x="2" y="9"/><circle cx="4" cy="4" r="2"/></svg> |
| </a> |
| <a href="https://www.youtube.com/c/pollenrobotics" target="_blank" rel="noopener noreferrer" aria-label="YouTube" class="social-link"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"/><path d="m10 15 5-3-5-3z"/></svg> |
| </a> |
| <a href="https://github.com/pollen-robotics" target="_blank" rel="noopener noreferrer" aria-label="GitHub" class="social-link"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"/><path d="M9 18c-4.51 2-5-2-7-2"/></svg> |
| </a> |
| <a href="https://x.com/pollenrobotics" target="_blank" rel="noopener noreferrer" aria-label="X" class="social-link"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"/></svg> |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="footer-credit"> |
| Proudly brought by <a href="https://www.pollen-robotics.com/" target="_blank" rel="noopener noreferrer">Pollen Robotics</a> x 🤗 <a href="https://huggingface.co" target="_blank" rel="noopener noreferrer">Hugging Face</a> |
| </div> |
| </div> |
| </footer> |
|
|
| </body> |
| </html> |