fp/packages/next/app/about/page.tsx

38 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faExternalLinkAlt } from "@fortawesome/free-solid-svg-icons";
import Link from 'next/link';
// import { getProgress } from '../lib/vods'
export default async function Page() {
// const { complete, total } = await getProgress('projektmelody')
return (
<>
2024-07-06 08:49:51 +00:00
<div className="content">
2024-01-20 16:16:14 +00:00
2024-03-29 07:28:02 +00:00
<section className="hero">
<div className="hero-body">
<p className="title">About</p>
2024-07-10 02:34:23 +00:00
<p>It&apos;s the worst feeling when a VOD disappears from the internet. It means you missed out, it&apos;s gone, and you may never experience what your peers got to take part in.</p>
2024-07-06 08:49:51 +00:00
<p>Futureporn is created by fans, for fans. Missed a stream? We got you, bro.</p>
<p>Together we can end 404s and create an everlasting archive of lewdtuber livestreams.</p>
2024-01-20 16:16:14 +00:00
2024-07-06 08:49:51 +00:00
</div>
2024-01-20 16:16:14 +00:00
2024-07-06 08:49:51 +00:00
</section>
2024-01-20 16:16:14 +00:00
2024-03-29 07:28:02 +00:00
<div className="section">
2024-01-20 16:16:14 +00:00
2024-03-29 07:28:02 +00:00
<article className="mt-5 message is-success">
<div className="message-body">
<p>Futureporn needs financial support to continue improving. If you enjoy this website, please consider <Link target="_blank" href="https://patreon.com/CJ_Clippy">becoming a patron<FontAwesomeIcon icon={faExternalLinkAlt} className="fas fa-external-link-alt ml-1" /></Link>.</p>
</div>
</article>
2024-01-20 16:16:14 +00:00
</div>
2024-03-29 07:28:02 +00:00
2024-01-20 16:16:14 +00:00
</div>
</>
)
}