Why Clinical Register

"use client"; import React from "react"; import { motion } from "framer-motion"; import { ShieldCheck, FileSignature, Database, Globe2, LineChart, Search, CheckCircle2, ChevronRight, BookOpen, Lock, Building2, Clock, AlertCircle, } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Tabs, TabsList, TabsTrigger, TabsContent } from "@/components/ui/tabs"; // ------------------------------------------------------------ // THE CLINICAL REGISTER – "WHY REGISTER" PAGE // Same palette, layout language, and component stack // ------------------------------------------------------------ // Primary: teal-700 (#0f766e) / teal-600 (#0d9488) // Secondary (accent): amber-500 (#f59e0b) // Neutral: slate-950/900/800 and slate-100/200 // Success: emerald-600; Danger: rose-600 // ------------------------------------------------------------ export default function WhyRegisterPage() { return (
); } function SkipLink() { return ( Skip to content ); } function Header() { return (
THE CLINICAL REGISTER
); } function Hero() { return (
); } function BenefitRow({ label, detail }: { label: string; detail: string }) { return (
{label}
{detail}
); } function WhyItMatters() { return (

Registration protects patients and the record of science

When plans and outcomes are captured up front, it becomes much harder for selective reporting, silent outcome switching, or undisclosed protocol changes to erode trust in the evidence.

A well-structured registry entry also becomes a shared reference point for investigators, sponsors, ethics boards, and journals throughout the life of the study.

} title="Global visibility" text="Help clinicians, patients, and systematic reviewers discover your work in seconds." /> } title="Locked-in intent" text="Pre-specify primary outcomes and analysis plans to anchor later reporting." /> } title="Meta-analysis ready" text="Provide structured fields that map cleanly to PRISMA and evidence synthesis tools." /> } title="Institutional memory" text="Give departments and sponsors a live view of active and completed studies." />
); } function ValueCard({ icon, title, text, }: { icon: React.ReactNode; title: string; text: string; }) { return ( ); } function ComplianceGrid() { const items = [ { label: "ICMJE & major journals", detail: "Most high-impact journals require prospective registration for interventional trials.", }, { label: "Ethics boards and REBs", detail: "Many REBs now request a registry ID before approval or at first patient enrolment.", }, { label: "Funders & sponsors", detail: "Grant bodies and industry sponsors increasingly embed trial registration into contracts.", }, { label: "Systematic reviewers", detail: "Unregistered or poorly registered studies are harder to include in formal synthesis.", }, ]; return (

Registration has become a compliance baseline

The Clinical Register is designed to satisfy the expectations of journals, ethics committees, regulators, and funders in one place.

{items.map((item) => ( ))}
); } function StakeholderTabs() { return (

What registration means for you

Different roles see different benefits. The Clinical Register gives each stakeholder a clear, auditable view of the study.

); } function BulletList({ items }: { items: string[] }) { return (
    {items.map((item) => (
  • {item}
  • ))}
); } function Journey() { const steps = [ { label: "Before first patient", title: "Define and register", text: "Capture objectives, endpoints, eligibility, and key methods. Obtain a persistent registry ID.", }, { label: "During recruitment", title: "Maintain and amend", text: "Update recruitment status, centres, and any approved amendments with a clear audit trail.", }, { label: "Analysis & write-up", title: "Align reporting", text: "Use registered outcomes and planned analyses to shape manuscripts and submissions.", }, { label: "After publication", title: "Link and reuse", text: "Connect the registry entry to publications, datasets, and systematic reviews.", }, ]; return (

The registration journey

Registration is a short step that pays off throughout the life of the study. The Clinical Register keeps each stage connected.

Typical time to first registration: 15–25 minutes
{steps.map((step, index) => ( ))}
); } function RiskSection() { return (

Risks of not registering

Failing to register or registering late can have real consequences, from publication barriers to reputational and ethical concerns.

  • Manuscripts may be rejected outright by journals that require prospective registration.
  • Ethics boards and sponsors may question the transparency of outcome selection and protocol changes.
  • Important work is harder to find, cite, and interpret in the broader evidence base.
); } function Cta() { return (

Ready to register your next study

Create a record in minutes, keep it aligned with ethics and journal expectations, and give your work a durable, citable home.

); } function Footer() { return ( ); }