chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { LinkButton } from "~/components/primitives/Buttons";
|
||||
import { NavBar, PageAccessories, PageTitle } from "~/components/primitives/PageHeader";
|
||||
|
||||
export default function Story() {
|
||||
return (
|
||||
<div className="flex flex-col gap-4 bg-background-bright p-4">
|
||||
<div className="bg-background-bright">
|
||||
<NavBar>
|
||||
<PageTitle title="Organizations" />
|
||||
<PageAccessories>
|
||||
<LinkButton to={""} variant="primary/small" shortcut={{ key: "n" }}>
|
||||
Create a new Organization
|
||||
</LinkButton>
|
||||
</PageAccessories>
|
||||
</NavBar>
|
||||
</div>
|
||||
<div className="bg-background-bright">
|
||||
<NavBar>
|
||||
<PageTitle title="Your Organizations" backButton={{ to: "#", text: "Orgs" }} />
|
||||
<PageAccessories>
|
||||
<LinkButton to={""} variant="primary/small" shortcut={{ key: "n" }}>
|
||||
Create a new Organization
|
||||
</LinkButton>
|
||||
</PageAccessories>
|
||||
</NavBar>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user