diff --git a/app/endowment/components/EndowmentRightSidebar.tsx b/app/endowment/components/EndowmentRightSidebar.tsx new file mode 100644 index 000000000..972aa033a --- /dev/null +++ b/app/endowment/components/EndowmentRightSidebar.tsx @@ -0,0 +1,44 @@ +import { ExternalLink } from 'lucide-react'; +import { SidebarHeader } from '@/components/ui/SidebarHeader'; + +export const EndowmentRightSidebar = () => { + return ( +
+
+
+ +

+ + ResearchHub Endowment turns your RSC holdings into a continuous stream of research + funding. + {' '} + By holding RSC on the platform, you automatically earn Funding Credits—a currency that + can only be used to fund preregistered research proposals. Funding Credits are + distributed daily, with transparent updates on the My Wallet page. There are no lockup + periods — you may withdraw your principal any time. Yield rates vary based on platform + participation. +

+
+ +
+ +
+ +
+ Learn how the endowment works +
+
+ +
+
+
+
+
+
+ ); +}; diff --git a/app/endowment/layout.tsx b/app/endowment/layout.tsx index bb8cee01a..a8ac2725b 100644 --- a/app/endowment/layout.tsx +++ b/app/endowment/layout.tsx @@ -1,6 +1,7 @@ import { Metadata } from 'next'; import { buildOpenGraphMetadata, SITE_CONFIG } from '@/lib/metadata'; import { PageLayout } from '@/app/layouts/PageLayout'; +import { EndowmentRightSidebar } from './components/EndowmentRightSidebar'; export const metadata: Metadata = { ...buildOpenGraphMetadata({ @@ -15,5 +16,5 @@ export const metadata: Metadata = { }; export default function EndowmentLayout({ children }: Readonly<{ children: React.ReactNode }>) { - return {children}; + return }>{children}; } diff --git a/app/endowment/page.tsx b/app/endowment/page.tsx index 374167a69..80adfce6e 100644 --- a/app/endowment/page.tsx +++ b/app/endowment/page.tsx @@ -25,25 +25,6 @@ export default function EndowmentPage() { preload="metadata" src="https://assets.prod.researchhub.com/videos/researchHub-endowments.MP4#t=2" /> -

- - ResearchHub Endowment turns your RSC holdings into a continuous stream of research - funding. - {' '} - By holding RSC on the platform, you automatically earn Funding Credits—a currency that can - only be used to fund preregistered research proposals. Funding Credits are distributed - daily, with transparent updates on the My Wallet page. There are no lockup periods — you - may withdraw your principal any time. Yield rates vary based on platform participation. - See below for current and historical performance metrics. -

- - Learn how the endowment works - );