Files
2025-06-03 14:39:01 +08:00

59 lines
1.9 KiB
TypeScript

import { SidebarNavItem, SiteConfig } from "types";
import { env } from "@/env.mjs";
const site_url = env.NEXT_PUBLIC_APP_URL || "http://localhost:3030";
const open_signup = env.NEXT_PUBLIC_OPEN_SIGNUP;
const email_r2_domain = env.NEXT_PUBLIC_EMAIL_R2_DOMAIN || "";
const enable_subdomain_apply = env.NEXT_PUBLIC_ENABLE_SUBDOMAIN_APPLY || "0";
export const siteConfig: SiteConfig = {
name: "WR.DO",
description:
"Shorten links with analytics, manage emails and control subdomains—all on one platform.",
url: site_url,
ogImage: `${site_url}/_static/og.jpg`,
links: {
twitter: "https://twitter.com/yesmoree",
github: "https://github.com/oiov/wr.do",
feedback: "https://github.com/oiov/wr.do/issues",
discord: "https://discord.gg/AHPQYuZu3m",
oichat: "https://oi.wr.do",
},
mailSupport: "support@wr.do",
openSignup: open_signup === "1" ? true : false,
emailR2Domain: email_r2_domain,
enableSubdomainApply: enable_subdomain_apply === "1" ? true : false,
};
export const footerLinks: SidebarNavItem[] = [
{
title: "Company",
items: [
{ title: "About", href: "/docs" },
{ title: "Terms", href: "/terms" },
{ title: "Privacy", href: "/privacy" },
{ title: "Blog", href: "https://www.oiov.dev" },
{ title: "Feedback", href: siteConfig.links.feedback },
],
},
{
title: "Products",
items: [
{ title: "Vmail", href: "https://vmail.dev" },
{ title: "Moise", href: "https://moise.oiov.dev" },
// { title: "Inke", href: "https://inke.wr.do" },
{ title: "Iconce", href: "https://iconce.com" },
{ title: "OiChat", href: siteConfig.links.oichat },
],
},
{
title: "Docs",
items: [
{ title: "Introduction", href: "/docs" },
{ title: "Guide", href: "/docs/quick-start" },
{ title: "Developer", href: "/docs/developer" },
{ title: "Contact", href: "mailto:support@wr.do" },
],
},
];