This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
scoresaber-reloadedv3/projects/website/src/components/home/data-collection.tsx

29 lines
906 B
TypeScript
Raw Normal View History

2024-10-28 22:47:45 -04:00
import { Database } from "lucide-react";
export default function DataCollection() {
return (
2024-10-29 15:50:58 -04:00
<div className="px-5 -mt-40 flex flex-col gap-10 select-none">
2024-10-28 22:47:45 -04:00
{/* Header */}
<div className="flex flex-col gap-2.5">
2024-10-29 15:50:58 -04:00
<div className="flex gap-3 items-center text-pp">
<Database className="p-2 size-11 bg-ssr/15 rounded-lg" />
<h1 className="text-3xl sm:text-4xl font-bold">Data Collection</h1>
2024-10-28 22:47:45 -04:00
</div>
2024-10-29 15:50:58 -04:00
<p className="max-w-5xl text-sm sm:text-base opacity-85">
posidonium novum ancillae ius conclusionemque splendide vel.
</p>
2024-10-28 22:47:45 -04:00
</div>
{/* Content */}
<div className="max-w-[900px]">
<img
2024-10-29 15:50:58 -04:00
className="w-full h-full rounded-2xl border border-ssr/20"
2024-10-28 22:47:45 -04:00
src="/assets/home/data-collection.png"
alt="Data Collection"
draggable={false}
/>
</div>
</div>
);
}