umwd-components 0.1.179 → 0.1.180
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.
|
@@ -82,7 +82,7 @@ function Footer(_ref) {
|
|
|
82
82
|
md: 4,
|
|
83
83
|
align: "center"
|
|
84
84
|
}, /*#__PURE__*/React.createElement(material.Link, {
|
|
85
|
-
href: "
|
|
85
|
+
href: "#home"
|
|
86
86
|
}, /*#__PURE__*/React.createElement(material.Box, {
|
|
87
87
|
sx: {
|
|
88
88
|
display: {
|
|
@@ -133,7 +133,9 @@ function Footer(_ref) {
|
|
|
133
133
|
variant: "body1"
|
|
134
134
|
}, company_address.street, " ", company_address.street_number, " ", company_address.street_number_addition && company_address.street_number_addition), /*#__PURE__*/React.createElement(material.Typography, {
|
|
135
135
|
variant: "body1"
|
|
136
|
-
}, company_address.postal_code, " ", company_address.city)
|
|
136
|
+
}, company_address.postal_code, " ", company_address.city), /*#__PURE__*/React.createElement(material.Typography, {
|
|
137
|
+
variant: "body1"
|
|
138
|
+
}, company_address.country)), /*#__PURE__*/React.createElement(material.Typography, {
|
|
137
139
|
variant: "body1"
|
|
138
140
|
}, "CoC: ", CoC_number), /*#__PURE__*/React.createElement(material.Typography, {
|
|
139
141
|
variant: "body1"
|
|
@@ -78,7 +78,7 @@ function Footer(_ref) {
|
|
|
78
78
|
md: 4,
|
|
79
79
|
align: "center"
|
|
80
80
|
}, /*#__PURE__*/React__default.createElement(Link, {
|
|
81
|
-
href: "
|
|
81
|
+
href: "#home"
|
|
82
82
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
83
83
|
sx: {
|
|
84
84
|
display: {
|
|
@@ -129,7 +129,9 @@ function Footer(_ref) {
|
|
|
129
129
|
variant: "body1"
|
|
130
130
|
}, company_address.street, " ", company_address.street_number, " ", company_address.street_number_addition && company_address.street_number_addition), /*#__PURE__*/React__default.createElement(Typography, {
|
|
131
131
|
variant: "body1"
|
|
132
|
-
}, company_address.postal_code, " ", company_address.city)
|
|
132
|
+
}, company_address.postal_code, " ", company_address.city), /*#__PURE__*/React__default.createElement(Typography, {
|
|
133
|
+
variant: "body1"
|
|
134
|
+
}, company_address.country)), /*#__PURE__*/React__default.createElement(Typography, {
|
|
133
135
|
variant: "body1"
|
|
134
136
|
}, "CoC: ", CoC_number), /*#__PURE__*/React__default.createElement(Typography, {
|
|
135
137
|
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
|
-
<Link href=
|
|
87
|
+
<Link href={`#home`}>
|
|
88
88
|
<Box
|
|
89
89
|
sx={{
|
|
90
90
|
display: { xs: "none", md: "flex" },
|
|
@@ -138,6 +138,9 @@ function Footer({
|
|
|
138
138
|
<Typography variant="body1">
|
|
139
139
|
{company_address.postal_code} {company_address.city}
|
|
140
140
|
</Typography>
|
|
141
|
+
<Typography variant="body1">
|
|
142
|
+
{company_address.country}
|
|
143
|
+
</Typography>
|
|
141
144
|
</>
|
|
142
145
|
)}
|
|
143
146
|
|