Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
red-giant
dashboard
Commits
4f73c813
Verified
Commit
4f73c813
authored
3 years ago
by
Defendi Alberto
Browse files
Options
Downloads
Patches
Plain Diff
Restore landing page.
parent
4dc1ec24
No related branches found
No related tags found
3 merge requests
!56
Refined auth flow and new website pages.
,
!53
Feature/authorization/curry
,
!52
Change folder structure and fix auth flow.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/LandingPage/LandingPage.tsx
+113
-0
113 additions, 0 deletions
src/components/LandingPage/LandingPage.tsx
with
113 additions
and
0 deletions
src/components/LandingPage/LandingPage.tsx
0 → 100644
+
113
−
0
View file @
4f73c813
import
React
,
{
FC
}
from
'
react
'
;
import
{
makeStyles
}
from
'
@material-ui/core/styles
'
;
import
{
CssBaseline
,
Grid
,
Typography
,
Hidden
,
createMuiTheme
,
responsiveFontSizes
,
MuiThemeProvider
,
Container
,
}
from
'
@material-ui/core
'
;
import
{
MapElement
}
from
'
components/Dashboard/HomePage/MapElement
'
;
import
{
NavBarLogin
}
from
'
components/Dashboard/HomePage/NavBarLogin
'
;
import
{
Numbers
}
from
'
components/Dashboard/HomePage/Numbers
'
;
import
{
Steps
}
from
'
components/Dashboard/HomePage/Steps
'
;
let
themeResp
=
createMuiTheme
();
themeResp
=
responsiveFontSizes
(
themeResp
);
const
useStyles
=
makeStyles
(()
=>
({
root
:
{
minHeight
:
'
100vh
'
,
backgroundImage
:
`url(
${
'
/assets/bg3.png
'
}
)`
,
backgroundRepeat
:
'
no-repeat
'
,
backgroundSize
:
'
cover
'
,
},
rightAlign
:
{
marginLeft
:
'
auto
'
,
},
whiteText
:
{
color
:
'
white
'
,
},
imageIcon
:
{
maxHeight
:
'
50%
'
,
},
paddingBottom
:
{
paddingBottom
:
'
65px
'
,
},
paddingTop
:
{
paddingTop
:
'
65px
'
,
},
bodyIcon
:
{
fontSize
:
'
90px
'
,
paddingBottom
:
'
10px
'
,
paddingTop
:
'
10px
'
,
},
contIcon
:
{
width
:
'
100%
'
,
left
:
'
0
'
,
right
:
'
0
'
,
},
noShadow
:
{
border
:
'
none
'
,
boxShadow
:
'
none
'
,
backgroundColor
:
'
transparent
'
,
},
}));
export
const
LandingPage
:
FC
=
()
=>
{
const
classes
=
useStyles
();
return
(
<
Grid
container
direction
=
"column"
className
=
{
classes
.
paddingBottom
}
>
<
div
className
=
{
classes
.
root
}
>
<
CssBaseline
/>
<
Grid
item
>
<
NavBarLogin
/>
</
Grid
>
<
MuiThemeProvider
theme
=
{
themeResp
}
>
<
Grid
item
container
className
=
{
classes
.
paddingBottom
}
>
<
Grid
item
xs
=
{
1
}
md
=
{
2
}
lg
=
{
2
}
/>
<
Grid
item
xs
=
{
10
}
md
=
{
6
}
lg
=
{
4
}
>
<
Typography
variant
=
"h2"
className
=
{
classes
.
whiteText
}
>
Book Free Rides Now With
</
Typography
>
<
Typography
variant
=
"h1"
className
=
{
classes
.
whiteText
}
>
MOVE AID
</
Typography
>
</
Grid
>
<
Grid
item
xs
=
{
false
}
md
=
{
3
}
lg
=
{
5
}
>
<
Hidden
mdDown
>
<
Container
>
<
MapElement
/>
</
Container
>
</
Hidden
>
</
Grid
>
<
Grid
item
xs
=
{
1
}
/>
</
Grid
>
<
Steps
/>
</
MuiThemeProvider
>
</
div
>
<
Grid
item
container
className
=
{
classes
.
paddingTop
}
>
<
Grid
item
xs
=
{
2
}
/>
<
Grid
item
xs
=
{
8
}
>
<
Typography
variant
=
"h3"
align
=
"right"
>
Some Our Numbers
</
Typography
>
</
Grid
>
<
Grid
item
xs
=
{
2
}
/>
</
Grid
>
<
Numbers
/>
</
Grid
>
);
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment