web3.news/app/routes/__info.donate.tsx

84 lines
3.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Link } from "@remix-run/react";
import { generateMetaTags } from "@/lib/meta.js";
import type { ServerRuntimeMetaArgs } from "@remix-run/server-runtime";
export function meta(meta: ServerRuntimeMetaArgs) {
const title = "Support - web3.news: Empowering a User-Owned Web";
const description =
"Support an open web with web3.news. Contribute to our ad-free, user-focused platform and fuel community-led innovation.";
return [
...generateMetaTags({
title: title,
description: description,
parentMeta: meta,
}),
];
}
export default function Page() {
return (
<article className="px-8 block text-gray-400 space-y-5">
<h1 className="text-primary text-3xl leading-9">
Building an Open, User-Owned Web Together
</h1>
<p className="text-white mt-3 leading-7">
Our mission is clear:{" "}
<strong>to create a web that is owned and shaped by its users</strong>.
If we don't take the lead, others <strong>will</strong> shape it for us.
</p>
<p>
Operated under the Lume Web project, web3.news exists for the
community's benefit and is developed under the MIT license. Were
committed to <strong>transparency and open collaboration</strong>.
</p>
<p>
At web3.news, we are dedicated to{" "}
<strong>building technology, fostering community,</strong> and{" "}
<strong>providing education</strong>. Our vision is powered by your
participation and support.
</p>
<p>
Currently, web3.news operates thanks to your generous donations and
grant funding, at this time primarily from the{" "}
<Link to="https://sia.tech/" className="text-white">
<strong>Sia Foundation</strong>
</Link>
, a 501c3 blockchain foundation focused on decentralized storage. This
significant support aligns closely with our mission of{" "}
<strong>building an open and decentralized web</strong>. These
contributions are vital for our ongoing operations and development,
ensuring web3.news remains a vibrant and valuable resource for everyone,
and paving the way for our future growth and sustainability.
</p>
<p>
The support from the Sia Foundation not only bolsters our present
efforts but also aligns with our vision of leveraging blockchain
technology for{" "}
<strong>decentralized information sharing and storage</strong>.
</p>
<p>
Looking to the future, the Lume Web project is set to introduce
separate, community-supported paid products. This strategic move aims to
ensure the <strong>long-term sustainability of web3.news</strong> and
the ongoing development of innovative solutions. Aligned with our core
values and community focus, these products are envisioned as providing
essential services and value back to the community, shaped in part by
your feedback and participation.
</p>
<p>
We pledge to maintain web3.news as a platform{" "}
<strong>free from sponsorships and advertising</strong>, focusing on
solving problems through collaboration and innovation.
</p>
<p>
<strong>Join us in shaping the future of Web3.</strong>
</p>
<Link to="https://lumeweb.com/donate" aria-label="Support Our Mission">
<button className="my-6 p-8 text-gray-500 bg-gray-800 hover:bg-gray-800/70">
Support Our Mission
</button>
</Link>
</article>
);
}