Skip to content

Commit e00002b

Browse files
committed
feat(footer): uncomment the site footer
1 parent 91e15dc commit e00002b

2 files changed

Lines changed: 16 additions & 12 deletions

File tree

src/app/AppLayout/AppLayout.tsx

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import {
1212
PageHeader,
1313
PageSidebar,
1414
SkipToContent,
15+
Stack,
16+
StackItem,
1517
Title,
1618
} from '@patternfly/react-core';
1719
import { routes, IAppRoute, IAppRouteGroup } from '@app/routes';
@@ -101,18 +103,20 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({ children }) => {
101103
</SkipToContent>
102104
);
103105
return (
104-
<Page
105-
mainContainerId={pageId}
106-
header={Header}
107-
sidebar={Sidebar}
108-
onPageResize={onPageResize}
109-
skipToContent={PageSkipToContent}
110-
>
111-
{children}
112-
{/* <Banner isSticky>
106+
<Stack>
107+
<Page
108+
mainContainerId={pageId}
109+
header={Header}
110+
sidebar={Sidebar}
111+
onPageResize={onPageResize}
112+
skipToContent={PageSkipToContent}
113+
>
114+
{children}
115+
</Page>
116+
<Banner isSticky>
113117
<SocialMediaContainer></SocialMediaContainer>
114-
</Banner> */}
115-
</Page>
118+
</Banner>
119+
</Stack>
116120
);
117121
};
118122

src/app/AppLayout/SocialMediaContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class SocialMediaContainer extends React.Component<any, any> {
66
public render() {
77
return (
88
<Bullseye className="social-media-container">
9-
<div className="version">v2.0.0</div>
9+
<div className="version">v2.0.0-ea</div>
1010
<Flex spaceItems={{ default: "spaceItemsXl" }}>
1111
<a
1212
href="https://www.github.com/aptmac/draftaid-react"

0 commit comments

Comments
 (0)