// Atlas ยท Repository enterprise upsell page function RepositoryUpsell({ onUpgrade, onBack }) { const benefits = [ { icon: "file-text", title: "Upload your existing research", desc: "PDFs, Word files, slide decks, internal reports. Atlas indexes everything and keeps it searchable.", color: "#E4F1EA", iconColor: "#2C7A50", }, { icon: "search", title: "Every report gets smarter", desc: "Atlas automatically finds and cites your internal documents alongside public research in each report it writes.", color: "#EAF0FB", iconColor: "#3B6FCA", }, { icon: "users", title: "Built for teams", desc: "Invite colleagues, manage roles, and build a shared knowledge base that grows with your organization.", color: "#FBF0E4", iconColor: "#A35E12", }, { icon: "lock", title: "Completely private", desc: "Your documents never leave your organization. They are not shared, indexed publicly, or used to train any model.", color: "#F2DCDA", iconColor: "#94413A", }, ]; const useCases = [ { label: "Pharma and biotech", example: "Upload clinical trial protocols, safety reports, and regulatory submissions. Atlas cross-references them in every literature review it produces.", }, { label: "Strategy and consulting", example: "Store past client deliverables, market studies, and frameworks. Atlas surfaces the right prior work when writing new competitive analyses.", }, { label: "Corporate R&D", example: "Index internal patents, lab notebooks, and vendor assessments. Atlas weaves them into technology landscape reports automatically.", }, { label: "Investment and finance", example: "Keep deal memos, sector theses, and portfolio notes in one place. Atlas draws on them when researching a new company or market.", }, ]; return (
{/* Back */} {/* Hero */}
Enterprise feature

Your organization's knowledge, inside every report

The Repository connects Atlas to your internal documents. Upload what your team already knows, and Atlas will cite it alongside public research in every report it writes.

We follow up within one business day.
{/* Benefits grid */}
{benefits.map((b) => (
{b.title}
{b.desc}
))}
{/* Use cases */}
How teams use the Repository
{useCases.map((u, i) => (
{u.label}
{u.example}
))}
{/* Bottom CTA */}
Ready to connect your organization's knowledge?
Tell us about your team and we will be in touch to get you set up.
); }