Update page.tsx

This commit is contained in:
martianina 2025-02-03 08:42:08 -05:00 committed by GitHub
parent c24c170668
commit 6659cd7e66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ import React from 'react';
import Navigation from '../../components/Navigation';
import { Leaf } from 'lucide-react';
const LandingPage = () => {
const RangerPage = () => {
return (
<div className="min-h-screen w-full flex flex-col items-center bg-gradient-to-b from-emerald-950 via-green-900 to-emerald-950">
<div className="container max-w-7xl mx-auto px-4 py-8">
@ -29,28 +29,26 @@ const LandingPage = () => {
</div>
{/* Content */}
<div className="section">
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Ranger</h2>
<ul className="list-disc list-inside text-emerald-200 space-y-2">
<li>Traditional funding structures like NIH are shrinking. DeSci offers a sustainable future for research.</li>
<li>Global Citizen Science: Engage both general populations and academics worldwide.</li>
<li>Ranger removes national barriers, putting control back into the hands of researchers.</li>
<li>DeSci + AI is the next frontierRanger is the portal.</li>
</ul>
</div>
<div className="max-w-3xl mx-auto bg-emerald-900/20 rounded-xl p-8 border border-emerald-800/50 space-y-8">
<div className="section">
<h2 className="text-xl font-semibold text-emerald-300 mb-4">In development since 2016</h2>
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">A New Paradigm in Global Scientific Data</h2>
<p className="text-emerald-200">
Ranger is the gateway to decentralized science, bridging citizen participation with cutting-edge research. Built by Zach Ramsay, with a robust backend refined since 2016, Ranger empowers scientists and citizen scientists alike to collaborate, share, and monetize dataall without traditional intermediaries like the U.S. government. Ranger transforms the citizen science model, making institutions customers rather than gatekeepers.
Ranger is the gateway to decentralized science, bridging citizen participation with cutting-edge research. Built by DeSci pioneer Zach Ramsay, with a robust backend refined since 2016, Ranger empowers scientists and citizen scientists alike to collaborate, share, and monetize dataall without traditional intermediaries like the U.S. government. Ranger transforms the citizen science model, making institutions customers rather than gatekeepers.
</p>
</div>
<div className="section">
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Key Features</h2>
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Community Science</h2>
<ul className="list-disc list-inside text-emerald-200 space-y-2">
<li>DeSci offers a sustainable future for research.</li>
<li>Verifiable data from general populations and academics worldwide.</li>
<li>Ranger removes national barriers, putting control back into the hands of researchers.</li>
<li>DeSci + AI is the next frontierRanger is the portal.</li>
</ul>
</div>
<div className="section">
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Get started!</h2>
<ul className="list-disc list-inside text-emerald-200 space-y-2">
<li>Decentralized Access: Launch your own research portal with ease.</li>
<li>Verifiable Data: Leverage AI and blockchain to ensure the integrity of your findings.</li>
@ -60,7 +58,7 @@ const LandingPage = () => {
</div>
<div className="section">
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Whos Using Ranger?</h2>
<h2 className="text-3xl font-semibold text-emerald-300 mb-4">Serving Community Science</h2>
<ul className="list-disc list-inside text-emerald-200 space-y-2">
<li>Researchers: Collect valuable field data at a fraction of the traditional cost.</li>
<li>Citizen Scientists: Participate in groundbreaking studies and get paid for it.</li>
@ -97,4 +95,4 @@ const LandingPage = () => {
);
};
export default LandingPage;
export default RangerPage;