Landing page - new design implementation #122
No reviewers
Labels
No Label
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sigit/sigit.io#122
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "issue-21"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #21
login/register
,login/nostr
routesCustomRoutes
andrecursiveRouteRenderer
for mapping public and private routesFooter
componentContainer
componentRequested changes:
WIP: Landing page - new design implementationto Landing page - new design implementation@ -0,0 +22,4 @@
--review-feedback-correct: #{$review-feedback-correct};
--review-feedback-incorrect: #{$review-feedback-incorrect};
--review-feedback-neutral: #{$review-feedback-neutral};
--review-feedback-selected-color: #{$review-feedback-selected-color};
These variables related to review feedback can be removed. These are leftovers from another repository.
@ -50,1 +52,4 @@
const publicRoutesList = recursiveRouteRenderer({
routes: publicRoutes,
renderConditionCallback: (r) => {
It'll be good to add a comment about
renderConditionCallback
to explain what it does.@ -22,2 +18,2 @@
onClick={handleClick}
color="inherit"
<div
style={{
This and some of other inline styling in this file can be moved to a separate scss file.
@ -0,0 +20,4 @@
const cards = [
{
icon: (
<svg
I know that these icons were provided by the designer like this but I suggest we use fontAwesome library and import the icons and use them in form of components.
Have a look at this
@ -39,0 +55,4 @@
hiddenWhenLoggedIn?: boolean
}>
export function recursiveRouteRenderer<T>({
Add some comments about the function.
@ -0,0 +16,4 @@
$review-feedback-correct: #178b13;
$review-feedback-incorrect: #d82222;
$review-feedback-neutral: #f39220;
$review-feedback-selected-color: #fff;
These variables related to review feedback can be removed. These are leftovers from another repository.