add privacy and credits
All checks were successful
deploy / deploy (push) Successful in 54s

This commit is contained in:
Lee
2023-10-27 17:15:57 +01:00
parent 1f189507ed
commit 5e3d8acbeb
5 changed files with 120 additions and 0 deletions

55
src/app/privacy/page.tsx Normal file
View File

@ -0,0 +1,55 @@
import Card from "@/components/Card";
import Container from "@/components/Container";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Privacy",
};
const links = [
{
name: "Sentry",
url: "https://sentry.fascinated.cc",
description:
"The site uses Sentry to track errors. This is to help me fix bugs and issues with the site.",
},
{
name: "Plausible",
url: "https://analytics.fascinated.cc",
description:
"The site uses Plausible to track page views. This is to help me see which pages are popular.",
},
];
export default async function Analytics() {
return (
<main>
<Container>
<Card
className="mt-2 w-full rounded-md bg-gray-800"
innerClassName="flex flex-col items-center justify-center text-center"
>
<h1 className="mb-1 text-3xl font-bold">Privacy</h1>
<p className="mb-8 text-gray-300">
This site does not collect personal data. All of the data stored is
in your browser&apos;s local storage.
</p>
<p>All of the services below are hosted by me.</p>
<div className="text-gray-300">
{links.map((link, index) => {
return (
<p key={index}>
<a className="text-pp-blue" href={link.url}>
{link.name}
</a>{" "}
- {link.description}
</p>
);
})}
</div>
</Card>
</Container>
</main>
);
}