init
This commit is contained in:
44
config/site.ts
Normal file
44
config/site.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { SiteConfig } from "@/types/siteConfig";
|
||||
|
||||
export const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL || "https://nextforge.dev";
|
||||
|
||||
export const SOURCE_CODE_URL = "https://github.com/weijunext/nextjs-starter";
|
||||
export const PRO_VERSION = "https://nexty.dev";
|
||||
|
||||
const TWITTER_URL = 'https://x.com/weijunext'
|
||||
const BSKY_URL = 'https://bsky.app/profile/judewei.bsky.social'
|
||||
const EMAIL_URL = 'mailto:weijunext@gmail.com'
|
||||
const GITHUB_URL = 'https://github.com/weijunext'
|
||||
const DISCORD_URL = process.env.NEXT_PUBLIC_DISCORD_INVITE_URL
|
||||
|
||||
export const siteConfig: SiteConfig = {
|
||||
name: "武汉萨格外贸",
|
||||
tagLine: '武汉萨格 外贸 门户网站',
|
||||
description:
|
||||
"武汉萨格 外贸 门户网站,提供专业的外贸服务和解决方案。",
|
||||
url: BASE_URL,
|
||||
authors: [
|
||||
{
|
||||
name: "chao",
|
||||
url: "https://chao.com",
|
||||
}
|
||||
],
|
||||
creator: 'chao',
|
||||
socialLinks: {
|
||||
discord: DISCORD_URL,
|
||||
twitter: TWITTER_URL,
|
||||
github: GITHUB_URL,
|
||||
bluesky: BSKY_URL,
|
||||
email: EMAIL_URL
|
||||
},
|
||||
themeColors: [
|
||||
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
||||
{ media: '(prefers-color-scheme: dark)', color: 'black' },
|
||||
],
|
||||
defaultNextTheme: 'system', // next-theme option: system | dark | light
|
||||
icons: {
|
||||
icon: "/favicon.png",
|
||||
shortcut: "/logo.png",
|
||||
apple: "/logo.png", // apple-touch-icon.png
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user