From 036475b660f33200d68e4d976f1465019cad1b56 Mon Sep 17 00:00:00 2001 From: PelayoFelgueroso Date: Wed, 10 Dec 2025 08:06:47 +0100 Subject: [PATCH 1/3] Fix appLayout Footer prop Description --- .../application-layout/code/ApplicationLayoutCodePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx b/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx index 01aeedb0a..8a8942209 100644 --- a/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx +++ b/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx @@ -45,7 +45,7 @@ const ApplicationLayoutPropsTable = () => ( Footer of the application layout shown at the bottom of the screen. It is optional and if it is not specified, - the default header will be shown. Please check the Footer documentation{" "} + the default footer will be shown. Please check the Footer documentation{" "} here From fae26b12f1448551b3a3ce0236358dfd0261df04 Mon Sep 17 00:00:00 2001 From: PelayoFelgueroso Date: Wed, 10 Dec 2025 08:10:05 +0100 Subject: [PATCH 2/3] Fix header prop description --- .../application-layout/code/ApplicationLayoutCodePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx b/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx index 8a8942209..f688b33c1 100644 --- a/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx +++ b/apps/website/screens/components/application-layout/code/ApplicationLayoutCodePage.tsx @@ -60,7 +60,7 @@ const ApplicationLayoutPropsTable = () => ( Header of the application layout shown at the top of the screen. It is optional and if it is not specified, - the default header will be shown. Please check the Header documentation{" "} + the header will not be shown. Please check the Header documentation{" "} here From e9df9da144798f8bfab2491c5139432496f52ced Mon Sep 17 00:00:00 2001 From: PelayoFelgueroso Date: Wed, 10 Dec 2025 08:48:14 +0100 Subject: [PATCH 3/3] Add default value to logo prop in footer component --- .../screens/components/footer/code/FooterCodePage.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/website/screens/components/footer/code/FooterCodePage.tsx b/apps/website/screens/components/footer/code/FooterCodePage.tsx index a4666a0f1..124e5ab5c 100644 --- a/apps/website/screens/components/footer/code/FooterCodePage.tsx +++ b/apps/website/screens/components/footer/code/FooterCodePage.tsx @@ -20,6 +20,11 @@ const socialLinkTypeString = `{ logo: string | SVG; }[]`; +const defaultFooterLogo = `{ + src: DxcLogo, + alt: "DXC Technology Logo" +}`; + const sections = [ { title: "Props", @@ -85,7 +90,9 @@ const sections = [ {logoTypeString} Logo to be displayed inside the footer. - - + + {defaultFooterLogo} + mode