From 5fe9a509d518fde6f22b79ed1e4f2ace8e70d022 Mon Sep 17 00:00:00 2001 From: Ou Date: Sun, 13 Oct 2024 14:17:19 +0800 Subject: [PATCH] feat: add finance column --- shared/data.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/shared/data.ts b/shared/data.ts index e166f98..ec2abf8 100644 --- a/shared/data.ts +++ b/shared/data.ts @@ -1,6 +1,6 @@ import type { Metadata } from "./types" -export const sectionIds = ["focus", "realtime", "hottest", "china", "world", "tech"] as const +export const sectionIds = ["focus", "realtime", "hottest", "china", "world", "tech", "finance"] as const export const metadata: Metadata = { focus: { @@ -25,6 +25,10 @@ export const metadata: Metadata = { }, tech: { name: "科技", - sources: ["ithome", "v2ex", "coolapk", "36kr-quick", "wallstreetcn"], + sources: ["ithome", "v2ex", "coolapk", "36kr-quick"], + }, + finance: { + name: "财经", + sources: ["wallstreetcn", "36kr-quick"], }, }