umwd-components 0.1.180 → 0.1.181
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import React__default from 'react';
|
|
9
|
-
import { useTheme, AppBar, Container, Toolbar, Grid,
|
|
10
|
-
import Link
|
|
9
|
+
import { useTheme, AppBar, Container, Toolbar, Grid, Box, Typography, Stack, IconButton, Divider, Link as Link$1 } from '@mui/material';
|
|
10
|
+
import Link from 'next/link';
|
|
11
11
|
import Image from 'next/image';
|
|
12
12
|
import getIcon from '../lib/getIcon.js';
|
|
13
13
|
import PropTypes from 'prop-types';
|
|
@@ -179,20 +179,20 @@ function Footer(_ref) {
|
|
|
179
179
|
alignItems: "center",
|
|
180
180
|
gap: 2,
|
|
181
181
|
justifyContent: "space-around"
|
|
182
|
-
}, disclaimer_link && /*#__PURE__*/React__default.createElement(Link
|
|
182
|
+
}, disclaimer_link && /*#__PURE__*/React__default.createElement(Link, {
|
|
183
183
|
href: disclaimer_link,
|
|
184
184
|
passHref: true,
|
|
185
185
|
legacyBehavior: true
|
|
186
|
-
}, /*#__PURE__*/React__default.createElement(Link, {
|
|
186
|
+
}, /*#__PURE__*/React__default.createElement(Link$1, {
|
|
187
187
|
target: "_blank"
|
|
188
188
|
}, /*#__PURE__*/React__default.createElement(Typography, {
|
|
189
189
|
variant: "body1",
|
|
190
190
|
color: "#ffffff"
|
|
191
|
-
}, "Disclaimer"))), privacypolicy_link && /*#__PURE__*/React__default.createElement(Link
|
|
191
|
+
}, "Disclaimer"))), privacypolicy_link && /*#__PURE__*/React__default.createElement(Link, {
|
|
192
192
|
href: privacypolicy_link,
|
|
193
193
|
passHref: true,
|
|
194
194
|
legacyBehavior: true
|
|
195
|
-
}, /*#__PURE__*/React__default.createElement(Link, {
|
|
195
|
+
}, /*#__PURE__*/React__default.createElement(Link$1, {
|
|
196
196
|
target: "_blank"
|
|
197
197
|
}, /*#__PURE__*/React__default.createElement(Typography, {
|
|
198
198
|
variant: "body1",
|
package/package.json
CHANGED
package/src/components/Footer.js
CHANGED
|
@@ -84,7 +84,7 @@ function Footer({
|
|
|
84
84
|
<Toolbar disableGutters>
|
|
85
85
|
<Grid container sx={{ p: 2 }} spacing={2}>
|
|
86
86
|
<Grid item xs={12} sm={12} md={4} align="center">
|
|
87
|
-
<
|
|
87
|
+
<NextLink href={`#home`}>
|
|
88
88
|
<Box
|
|
89
89
|
sx={{
|
|
90
90
|
display: { xs: "none", md: "flex" },
|
|
@@ -117,7 +117,7 @@ function Footer({
|
|
|
117
117
|
</Box>
|
|
118
118
|
)}
|
|
119
119
|
</Box>
|
|
120
|
-
</
|
|
120
|
+
</NextLink>
|
|
121
121
|
</Grid>
|
|
122
122
|
<Grid item xs={12} sm={6} md={4} align="center">
|
|
123
123
|
<Typography variant="h6" sx={{ mb: 2 }}>
|