2024-09-26 19:23:10 +02:00
|
|
|
import { Alert, SimpleText } from "@codex-storage/marketplace-ui-components";
|
2024-08-29 18:45:52 +02:00
|
|
|
import "./Welcome.css";
|
|
|
|
|
import { Link } from "@tanstack/react-router";
|
|
|
|
|
import { ChevronRight } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
export function Welcome() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="welcome">
|
|
|
|
|
<p className="welcome-title">Welcome to Codex Marketplace</p>
|
|
|
|
|
<div className="welcome-body">
|
|
|
|
|
<SimpleText variant="light">
|
2024-08-29 19:38:40 +02:00
|
|
|
Begin your journey with Codex by uploading new files for testing.
|
|
|
|
|
Experience the power of our decentralized data storage platform and
|
|
|
|
|
explore its features. Your feedback is invaluable as we continue to
|
|
|
|
|
improve!
|
2024-08-29 18:45:52 +02:00
|
|
|
</SimpleText>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Link to="/dashboard/help" className="welcome-link">
|
|
|
|
|
Explore more content <ChevronRight size={"1.5rem"} />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|