File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,11 @@ export default function About() {
39
39
className = "min-h-screen bg-background dark:bg-background-dark p-10 sm:p-12 md:p-16 flex flex-col relative pt-32"
40
40
>
41
41
< div className = "mt-16 flex flex-col items-center" >
42
- < WindowPanel title = "About Me" showBackArrow showBreadcrumbs >
42
+ < WindowPanel
43
+ title = "About Me"
44
+ showBackArrow = { true }
45
+ showBreadcrumbs = { true }
46
+ >
43
47
< Container className = "mt-8 w-full flex-grow max-w-3xl mx-auto" >
44
48
< div className = "mb-6" >
45
49
< Tooltip content = "is this you? &#x1f5b5;" >
Original file line number Diff line number Diff line change @@ -8,12 +8,14 @@ interface WindowPanelProps {
8
8
children : ReactNode ;
9
9
title : string ;
10
10
showBackArrow ?: boolean ;
11
+ showBreadcrumbs ?: boolean ; // Add this line
11
12
}
12
13
13
14
const WindowPanel : React . FC < WindowPanelProps > = ( {
14
15
children,
15
16
title,
16
17
showBackArrow = false ,
18
+ showBreadcrumbs = false , // Add this line
17
19
} ) => {
18
20
const router = useRouter ( ) ;
19
21
const [ isMinimized , setIsMinimized ] = useState ( false ) ;
You can’t perform that action at this time.
0 commit comments