fix: order by last updated, cycles empty state alignment (#1151)
* fix: order by last updated * fix: cycles empty space alignment, chore: new meta tags * chore: update meta tags
This commit is contained in:
parent
022960d7e3
commit
26ba4d71c3
26 changed files with 119 additions and 297 deletions
|
|
@ -1,15 +1,4 @@
|
|||
// layouts
|
||||
import Container from "layouts/container";
|
||||
|
||||
type Meta = {
|
||||
title?: string | null;
|
||||
description?: string | null;
|
||||
image?: string | null;
|
||||
url?: string | null;
|
||||
};
|
||||
|
||||
type Props = {
|
||||
meta?: Meta;
|
||||
children: React.ReactNode;
|
||||
noPadding?: boolean;
|
||||
bg?: "primary" | "secondary";
|
||||
|
|
@ -19,12 +8,10 @@ type Props = {
|
|||
right?: JSX.Element;
|
||||
};
|
||||
|
||||
const DefaultLayout: React.FC<Props> = ({ meta, children }) => (
|
||||
<Container meta={meta}>
|
||||
<div className="h-screen w-full overflow-auto bg-brand-surface-1">
|
||||
<>{children}</>
|
||||
</div>
|
||||
</Container>
|
||||
const DefaultLayout: React.FC<Props> = ({ children }) => (
|
||||
<div className="h-screen w-full overflow-auto bg-brand-surface-1">
|
||||
<>{children}</>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default DefaultLayout;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue