- 在app-instance前端应用中将logo图标从/boardware-logo.svg替换为/boardware-logo.jpg - 在auth-portal认证门户中将logo图标从/boardware-logo.svg替换为/boardware-logo.jpg - 更新了layout.tsx、Header.tsx以及登录注册页面中的图标引用 - 删除了原有的SVG格式logo文件
23 lines
454 B
TypeScript
23 lines
454 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Boardware Agent Sandbox',
|
|
description: '个人 AI 助手',
|
|
icons: {
|
|
icon: '/boardware-logo.jpg',
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="zh-CN" className="dark">
|
|
<body className="bg-background text-foreground">{children}</body>
|
|
</html>
|
|
);
|
|
}
|