File tree Expand file tree Collapse file tree 4 files changed +7
-25
lines changed Expand file tree Collapse file tree 4 files changed +7
-25
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ import "@assets/css/tailwind.css" ;
2
+
1
3
export const metadata = {
2
4
title : "Next.js" ,
3
5
description : "Generated by Next.js" ,
4
6
} ;
5
7
6
- export const RootLayout = ( { children } : { children : React . ReactNode } ) => {
8
+ export default function RootLayout ( { children } : { children : React . ReactNode } ) {
7
9
return (
8
10
< html lang = "en" >
9
11
< body > { children } </ body >
10
12
</ html >
11
13
) ;
12
- } ;
13
-
14
- export default RootLayout ;
14
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ import {
14
14
BreadcrumbPage ,
15
15
BreadcrumbSeparator ,
16
16
} from "@/components/vetsai/ui/breadcrumb" ;
17
+ import "@assets/css/vetsai.css" ;
17
18
18
- export const Assistant = ( ) => {
19
+ export default function Assistant ( ) {
19
20
const runtime = useChatRuntime ( {
20
21
api : "/api/chat" ,
21
22
} ) ;
@@ -47,6 +48,4 @@ export const Assistant = () => {
47
48
</ SidebarProvider >
48
49
</ AssistantRuntimeProvider >
49
50
) ;
50
- } ;
51
-
52
- export default Assistant ;
51
+ }
You can’t perform that action at this time.
0 commit comments