diff --git a/config.js b/config.js new file mode 100644 index 0000000..c07a894 --- /dev/null +++ b/config.js @@ -0,0 +1,18 @@ +export const SITE_CONFIG = { + title: "DevBin", + pageTitle: "DevBin // Private Code Sharing", + editorTitle: "Create New Paste", + + // Expiry Options: Comment out what you don't need + expiryOptions: [ + { label: "Burn on Read", value: "burn" }, + { label: "10 Minutes", value: "10m" }, + { label: "1 Hour", value: "1h" }, + { label: "12 Hours", value: "12h" }, + { label: "1 Day", value: "1d" }, + { label: "1 Week", value: "1w" }, + // { label: "1 Month", value: "1m" }, + // { label: "1 Year", value: "1y" }, + { label: "Never Expire", value: "never" }, + ] +};