Files
spacedrive/apps/landing/src/app/page-sections/github.tsx

34 lines
1.3 KiB
TypeScript
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 { Github as GithubLogo } from '@sd/assets/svgs/brands';
import React from 'react';
import { CtaSecondaryButton } from '~/components/cta-secondary-button';
export const Github = () => {
return (
<section className="container mx-auto mb-32 flex w-full flex-col flex-wrap items-start px-4">
<hgroup>
<h1 className="flex-1 self-start text-2xl font-bold leading-8 md:text-3xl md:leading-10">
Free and open-source.{' '}
<span className="bg-gradient-to-r from-zinc-400 to-zinc-500/70 bg-clip-text font-semibold text-transparent">
See for yourself.
</span>
</h1>
<p className="mt-[12px] text-balance font-plex text-lg leading-[125%] tracking-[0.01em] text-ink-dull">
When we promise strong privacy and encryption, we mean it. Our apps source code
is entirely open-source and available on GitHub, so if youre wondering what
Spacedrive does with your data or have an improvement to share, youre welcome
to do so we welcome and appreciate contributions!
</p>
</hgroup>
<div className="relative z-10 mt-[36px]">
<CtaSecondaryButton
icon={<GithubLogo fill="#CBDBEC" className="size-5 opacity-60" />}
href="https://github.com/spacedriveapp/spacedrive"
target="_blank"
>
View source on GitHub
</CtaSecondaryButton>
</div>
</section>
);
};