Skip to content

Commit 58365e0

Browse files
committed
fix
1 parent f6fb8c7 commit 58365e0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

app/(home)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Image } from 'fumadocs-core/framework';
1+
import Image from 'next/image';
22
import { Card } from 'fumadocs-ui/components/card';
33
import { Zap, Code, Package, Puzzle } from 'lucide-react';
44

app/layout.config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Image } from 'fumadocs-core/framework';
1+
import Image from 'next/image';
22
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';
33
import { Boxes, Hammer } from 'lucide-react';
44

app/layout.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ const inter = Inter({
88
subsets: ['latin'],
99
});
1010

11+
export const metadata = {
12+
title: 'sithra-rs Documentation',
13+
icons: {
14+
icon: '/icon.png',
15+
},
16+
};
17+
1118
export default function Layout({ children }: { children: ReactNode }) {
1219
return (
1320
<html lang="zh-CN" className={inter.className} suppressHydrationWarning>

0 commit comments

Comments
 (0)