Add privacy policy and terms of service pages; fix footer links (#placeholder)

This commit is contained in:
Hermes
2026-05-27 18:10:02 -07:00
parent 00aa123f73
commit e780e5aa60
4 changed files with 250 additions and 31 deletions
+12 -25
View File
@@ -108,26 +108,10 @@ export default function AboutPage() {
</h2>
<div className="grid grid-cols-2 md:grid-cols-4 gap-6">
{[
{
name: "Caddy",
role: "Reverse Proxy & SSL",
icon: "🔒",
},
{
name: "Docker",
role: "Container Runtime",
icon: "🐳",
},
{
name: "Node.js",
role: "API Backend",
icon: "🟢",
},
{
name: "Technitium",
role: "DNS Server",
icon: "🌐",
},
{ name: "Caddy", role: "Reverse Proxy & SSL", icon: "🔒" },
{ name: "Docker", role: "Container Runtime", icon: "🐳" },
{ name: "Node.js", role: "API Backend", icon: "🟢" },
{ name: "Technitium", role: "DNS Server", icon: "🌐" },
].map((tech) => (
<div
key={tech.name}
@@ -147,8 +131,7 @@ export default function AboutPage() {
<div className="max-w-3xl mx-auto text-center">
<h2 className="text-2xl font-bold text-white mb-6">Get In Touch</h2>
<p className="text-surface-300 mb-8">
Have questions, feedback, or want to contribute? We&apos;d love to
hear from you.
Have questions, feedback, or want to contribute? We&apos;d love to hear from you.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<a
@@ -158,13 +141,17 @@ export default function AboutPage() {
Email Us
</a>
<a
href="#"
href="https://discord.gg/dashcaddy"
target="_blank"
rel="noopener noreferrer"
className="px-6 py-3 rounded-lg border border-surface-700 hover:border-surface-500 text-surface-300 font-medium transition-colors"
>
Join Discord
</a>
<a
href="#"
href="https://github.com/dashcaddy"
target="_blank"
rel="noopener noreferrer"
className="px-6 py-3 rounded-lg border border-surface-700 hover:border-surface-500 text-surface-300 font-medium transition-colors"
>
GitHub
@@ -194,4 +181,4 @@ export default function AboutPage() {
<Footer />
</>
);
}
}