mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 10:29:58 +02:00
feat(docs): streamline product and privacy pages
This commit is contained in:
@@ -1,23 +1,27 @@
|
||||
import { BrandMark } from "@/components/brand";
|
||||
|
||||
const platforms = ["Android", "iOS", "macOS", "Windows", "Linux"];
|
||||
import { PlatformIcon, supportedPlatforms } from "@/components/platform-icon";
|
||||
|
||||
export function PlatformOrbit() {
|
||||
return (
|
||||
<div className="platform-orbit" aria-label="VniDrop supports Android, iOS, macOS, Windows, and Linux">
|
||||
<div
|
||||
className="platform-orbit"
|
||||
role="img"
|
||||
aria-label="VniDrop supports Android, iOS, macOS, Windows, and Linux"
|
||||
>
|
||||
<div className="platform-ring platform-ring-outer" aria-hidden="true" />
|
||||
<div className="platform-ring platform-ring-inner" aria-hidden="true" />
|
||||
<div className="platform-center" aria-hidden="true">
|
||||
<span className="platform-center-glow" />
|
||||
<BrandMark />
|
||||
</div>
|
||||
{platforms.map((platform, index) => (
|
||||
{supportedPlatforms.map((platform, index) => (
|
||||
<span
|
||||
key={platform}
|
||||
className={`platform-chip platform-chip-${index + 1}`}
|
||||
title={platform}
|
||||
>
|
||||
<i />
|
||||
{platform}
|
||||
<PlatformIcon className="platform-glyph" platform={platform} />
|
||||
<span className="sr-only">{platform}</span>
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user