Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const ApplicationLayoutPropsTable = () => (
</td>
<td>
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{" "}
<Link href="/components/footer" passHref legacyBehavior>
<DxcLink>here</DxcLink>
</Link>
Expand All @@ -60,7 +60,7 @@ const ApplicationLayoutPropsTable = () => (
</td>
<td>
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{" "}
<Link href="/components/header" passHref legacyBehavior>
<DxcLink>here</DxcLink>
</Link>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ const socialLinkTypeString = `{
logo: string | SVG;
}[]`;

const defaultFooterLogo = `{
src: DxcLogo,
alt: "DXC Technology Logo"
}`;

const sections = [
{
title: "Props",
Expand Down Expand Up @@ -85,7 +90,9 @@ const sections = [
<ExtendedTableCode>{logoTypeString}</ExtendedTableCode>
</td>
<td>Logo to be displayed inside the footer.</td>
<td>-</td>
<td>
<ExtendedTableCode>{defaultFooterLogo}</ExtendedTableCode>
</td>
</tr>
<tr>
<td>mode</td>
Expand Down