← back to IWasCute

src/app/faq/page.tsx

84 lines

import type { Metadata } from 'next'
import Link from 'next/link'
import Navbar from '@/components/shared/Navbar'

export const metadata: Metadata = {
  title: 'FAQ — I was Cute',
  description:
    'Answers to common questions about licensing your childhood photos on I was Cute: rights, royalties, consent, removal, and how the review process works.',
}

const FAQS: { q: string; a: string }[] = [
  {
    q: 'Do I keep ownership of my photos?',
    a: 'Yes. You are always the owner. I was Cute lets you license the use of a photo — you are never asked to sell or sign away the image itself, and you can withdraw a photo from the marketplace at any time.',
  },
  {
    q: 'How do I earn money?',
    a: 'When a licensee pays to use a photo you have listed, you receive a royalty on that license. You set the license types you allow up front, so you only ever earn from uses you have approved.',
  },
  {
    q: 'What kinds of licenses can I choose?',
    a: 'Each photo can be offered for editorial use, commercial use, or excluded from AI-training use entirely. You pick the boundaries that you are comfortable with before anything is listed.',
  },
  {
    q: 'What happens after I upload a photo?',
    a: 'Every submission goes through a copyright and likeness-release check before it can be listed. Nothing is offered for license until the rights are clear, so a photo is never published the instant you upload it.',
  },
  {
    q: 'Whose photos can I upload?',
    a: 'Only photos you hold the rights to and that show people who have consented to being listed. We do not accept images of people who have not agreed, and we do not knowingly handle photos of children under 13 for licensing.',
  },
  {
    q: 'How do I get a photo removed?',
    a: 'Email us at info@iwascute.com and we will take it down. We honor every removal request, and you can also request access to, correction of, or deletion of any information you have submitted.',
  },
  {
    q: 'Is my personal information sold?',
    a: 'No. Information you submit through a form is used only to respond to you and operate the service, and is retained only as long as needed. See our Privacy Policy for the full detail on data and advertising cookies.',
  },
]

export default function FAQPage() {
  return (
    <>
      <Navbar />
      <main
        className="flex-1 px-6 py-16 md:px-12"
        style={{ background: 'var(--color-cream)', color: 'var(--color-brown)' }}
      >
        <div className="mx-auto max-w-2xl">
          <p
            className="text-xs uppercase tracking-[0.2em] mb-3"
            style={{ color: 'var(--color-warm-gray)' }}
          >
            FAQ
          </p>
          <h1 className="text-4xl font-black tracking-tighter mb-10">
            Frequently asked questions
          </h1>

          <div className="flex flex-col gap-8">
            {FAQS.map(({ q, a }) => (
              <section key={q}>
                <h2 className="text-lg font-bold mb-2">{q}</h2>
                <p className="leading-relaxed" style={{ color: 'var(--color-warm-gray)' }}>
                  {a}
                </p>
              </section>
            ))}
          </div>

          <p className="text-sm mt-12" style={{ color: 'var(--color-warm-gray)' }}>
            Still have a question?{' '}
            <Link href="/contact" className="underline hover:opacity-70">
              Contact us
            </Link>
            .
          </p>
        </div>
      </main>
    </>
  )
}