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';
77import { BreadcrumbNavigation } from '@/components/shared/BreadcrumbNavigation' ;
88import { Providers } from './Providers' ;
99import { 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' ;
1015
1116export const metadata : Metadata = {
1217 title : 'Title' ,
@@ -23,16 +28,23 @@ export default function RootLayout({
2328 < body >
2429 < Providers >
2530 < 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 >
2638 < MainWrapper >
27- < div className = 'w-full' >
28- < AuthButtons />
29- </ div >
3039 < div className = 'w-full flex items-center justify-between pb-12' >
3140 < BreadcrumbNavigation />
3241 < PrevPageButton />
3342 </ div >
3443 { children }
3544 </ MainWrapper >
45+ < Footer >
46+ < span className = 'text-sm text-[#545454]' > version 1.0</ span >
47+ </ Footer >
3648 </ PageWrapper >
3749 </ Providers >
3850 < TailwindIndicator />
You can’t perform that action at this time.
0 commit comments