公告板
版本库
filestore
活动
搜索
登录
template
/
seningAI-chatgpt
seningAI-chatgpt
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
first create
wr1207
2023-04-17
32e4bad2cff2793052effcd2d59cdd8923702b22
[template/seningAI-chatgpt.git]
/
sening-ai-lite
/
components
/
Layout
/
Navbar.tsx
1
2
3
4
5
6
7
8
9
10
11
import { FC } from "react";
export const Navbar: FC = () => {
return (
<div className="flex h-[50px] sm:h-[60px] border-b border-neutral-300 py-2 px-2 sm:px-8 items-center justify-between">
<div className="font-bold text-3xl flex items-center">
Sening AI
</div>
</div>
);
};