统一 Airshelf 界面组件与图标

This commit is contained in:
iye
2026-05-27 12:29:41 +08:00
parent ea335587d2
commit 086d92991e
47 changed files with 750 additions and 450 deletions
+3 -9
View File
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import Sidebar from "@/components/Sidebar";
import GridBg from "@/components/GridBg";
@@ -10,14 +10,8 @@ const inter = Inter({
display: "swap",
});
const mono = JetBrains_Mono({
subsets: ["latin"],
variable: "--font-mono",
display: "swap",
});
export const metadata: Metadata = {
title: "流·Studio — AI 短视频生产平台",
title: "Airshelf — AI 短视频生产平台",
description:
"为抖音 / TikTok 商户打造的 AI 短视频生产流水线 · 脚本 → 基础资产 → 故事板 → 视频片段 → 拼接导出",
};
@@ -28,7 +22,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="zh-CN" className={`${inter.variable} ${mono.variable}`}>
<html lang="zh-CN" className={inter.variable}>
<body>
<div className="app">
<Sidebar />