v3: added multiple stylesheets, improved user profiles

This commit is contained in:
khannurien
2026-04-06 15:36:04 +00:00
parent a69788c15b
commit 3b6980a8fc
24 changed files with 2182 additions and 714 deletions

View File

@@ -4,12 +4,13 @@ import { SearchBar } from "./SearchBar.tsx";
interface PageShellProps {
children: ReactNode;
feed?: ReactNode;
centered?: boolean;
centerSlot?: ReactNode;
}
export function PageShell(
{ children, centered = false, centerSlot }: PageShellProps,
{ children, feed, centered = false, centerSlot }: PageShellProps,
) {
return (
<div className="page-shell">
@@ -19,6 +20,7 @@ export function PageShell(
>
{children}
</main>
{feed}
</div>
);
}