File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ import { PrevPageButton } from '@/components/shared/PrevPageButton';
7
7
import { BreadcrumbNavigation } from '@/components/shared/BreadcrumbNavigation' ;
8
8
import { Providers } from './Providers' ;
9
9
import { AuthButtons } from '@/components/auth/AuthButtons' ;
10
+ import { Toaster } from 'react-hot-toast' ;
11
+ import { Header } from '@/components/shared/Header' ;
12
+ import { H1 } from '@/components/shared/typography/H1' ;
13
+ import Link from 'next/link' ;
14
+ import { Footer } from '@/components/shared/Footer' ;
10
15
11
16
export const metadata : Metadata = {
12
17
title : 'Title' ,
@@ -23,16 +28,23 @@ export default function RootLayout({
23
28
< body >
24
29
< Providers >
25
30
< PageWrapper >
31
+ < Toaster />
32
+ < Header className = 'py-4' >
33
+ < Link href = '/' >
34
+ < H1 className = 'text-xl 3xl:text-xl' > Ready4Tech</ H1 >
35
+ </ Link >
36
+ < AuthButtons />
37
+ </ Header >
26
38
< MainWrapper >
27
- < div className = 'w-full' >
28
- < AuthButtons />
29
- </ div >
30
39
< div className = 'w-full flex items-center justify-between pb-12' >
31
40
< BreadcrumbNavigation />
32
41
< PrevPageButton />
33
42
</ div >
34
43
{ children }
35
44
</ MainWrapper >
45
+ < Footer >
46
+ < span className = 'text-sm text-[#545454]' > version 1.0</ span >
47
+ </ Footer >
36
48
</ PageWrapper >
37
49
</ Providers >
38
50
< TailwindIndicator />
You can’t perform that action at this time.
0 commit comments