tangled
alpha
login
or
join now
baileykane.co
/
personal-website-next
0
fork
atom
this repo has no description
www.baileykane.co/
0
fork
atom
overview
issues
pulls
pipelines
Move layout details into layout.tsx. TODO: Metadata
baileykane.co
1 year ago
d182606a
1b45a5ab
+1
-12
1 changed file
expand all
collapse all
unified
split
components
BaseLayout.tsx
+1
-12
components/BaseLayout.tsx
···
24
24
<Head>
25
25
<title>{title}</title>
26
26
</Head>
27
27
-
<div
28
28
-
className="flex flex-col items-center
29
29
-
min-h-screen w-full
30
30
-
bg-stone-50
31
31
-
dark:bg-gradient-to-br dark:from-stone-900 dark:to-stone-800
32
32
-
text-stone-900 dark:text-stone-100"
33
33
-
>
34
34
-
<div className="max-w-7xl w-full p-2 space-y-4">
35
35
-
<NavBar className={navbarVisible ? "" : "invisible"} />
36
36
-
<main>{children}</main>
37
37
-
</div>
38
38
-
</div>
27
27
+
{children}
39
28
</>
40
29
);
41
30
}