Site Config
Configure your brand name, URLs, social links, and contact information.
Overview
The config/site.config.ts file is the central place for all brand-related settings. Changes here are reflected across the entire application — header, footer, SEO metadata, emails, and more.
Configuration options
| Option | Type | Description |
|---|---|---|
name | string | Your brand/site name |
tagline | string | Short description shown in hero and SEO |
url | string | Production URL (used for OG images, canonical links) |
contact.email | string | Primary contact email |
contact.support | string | Support email address |
social.twitter | string | Twitter/X profile URL |
social.github | string | GitHub profile URL |
keywords | string[] | SEO keywords for meta tags |
Example
export const siteConfig = {
name: "ToolFinder",
tagline: "Discover the best developer tools",
url: "https://toolfinder.dev",
contact: {
email: "hello@toolfinder.dev",
support: "support@toolfinder.dev",
},
social: {
twitter: "https://twitter.com/toolfinder",
github: "https://github.com/toolfinder",
},
keywords: ["developer tools", "SaaS directory", "tool discovery"],
}