-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UND-38-navigation-footer #74
Conversation
Deploying with Cloudflare Pages
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check the comments
|
||
export const FooterLists = ({ type, headerText, text, style }) => { | ||
const ListTag = `${type}`; | ||
useEffect(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan remove useeffect hook if we are not using it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
} | ||
a { | ||
font-size: 16px; | ||
line-height: 22px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan can we use font size in rem and use the varibles
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done use the variable and variable is converted in rem done by shubam already.
c49b8e6
to
5c9cdc3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check the comments
<li><a href="#">{text}</a></li> | ||
<li><a href="#">{text2}</a></li> | ||
<li><a href="#">{text3}</a></li> | ||
<li><a href="#">{text4}</a></li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan can we create it as array and use map function for this
<li><a href="#">{text3}</a></li> | ||
<li><a href="#">{text4}</a></li> | ||
<li><a href="#">{text2}</a></li> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan can we create it as array and use map function for this
<a href="#" className="linkedIn"></a> | ||
<a href="#" className="instragram"></a> | ||
<a href="#" className="twitter"></a> | ||
<a href="#" className="youtube"></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan it is semantically wrong...please use li tag inside the ul tag
<Link label={text} /> | ||
<Link label={text} /> | ||
<Link label={text} /> | ||
<Link label={text} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harishkumar-srijan can we create it as array and use map function for this
5c9cdc3
to
70c5fd8
Compare
navigation footer