Files
hwilliams-dev/app/profile/layout.tsx
2026-06-08 22:46:40 -04:00

50 lines
1.0 KiB
TypeScript

import Nav from "@/components/Nav";
import Footer from "@/components/Footer";
export default function Layout({children}: {
children: React.ReactNode;
}) {
return (
<div style={{ minHeight: "100vh", paddingBottom: 36 }}>
<div
style={{
maxWidth: 880,
margin: "0 auto",
padding: "0 24px",
transition: "all 0.5s cubic-bezier(0.16, 1, 0.3, 1)",
}}
>
<header
style={{
padding: "24px 0 0",
display: "flex",
justifyContent: "space-between",
alignItems: "center",
}}
>
<div
style={{
fontFamily: "var(--mono)",
fontSize: 14,
fontWeight: 700,
color: "var(--accent)",
letterSpacing: "-0.02em",
}}
>
</div>
</header>
<Nav section={"profile"} />
<main>
{children}
</main>
</div>
<Footer />
</div>
);
}