diff --git a/package.json b/package.json index 0e3aa3f..1c753a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kerberos-io/ui", - "version": "1.76.0", + "version": "1.77.0", "main": "lib/index.js", "repository": "https://github.com/kerberos-io/ui", "author": "Kerberos.io ", diff --git a/src/components/LandingLayout/LandingLayout.stories.tsx b/src/components/LandingLayout/LandingLayout.stories.tsx index 388255f..83ce8a4 100644 --- a/src/components/LandingLayout/LandingLayout.stories.tsx +++ b/src/components/LandingLayout/LandingLayout.stories.tsx @@ -22,3 +22,11 @@ export const WithSignupCard = () => +
+ +
+
+ diff --git a/src/components/LandingLayout/LandingLayout.tsx b/src/components/LandingLayout/LandingLayout.tsx index 23ac999..903f716 100644 --- a/src/components/LandingLayout/LandingLayout.tsx +++ b/src/components/LandingLayout/LandingLayout.tsx @@ -89,13 +89,16 @@ export interface LandingLayoutProps{ children:any, title?:string, version?:string, - description?:string + description?:string, + hideFooter?:boolean } const LandingLayout = ({ children, title, version, - description}:LandingLayoutProps) => + description, + hideFooter + }:LandingLayoutProps) =>
@@ -105,7 +108,7 @@ const LandingLayout = ({ {children} - }
export default LandingLayout