forked from NIUANULP/nulp-elite-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task #216354 - UI for Direct connection
- Loading branch information
1 parent
6c7382e
commit 95f3e59
Showing
14 changed files
with
1,141 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from "react"; | ||
import Card from '@mui/material/Card'; | ||
import CardActions from '@mui/material/CardActions'; | ||
import CardContent from '@mui/material/CardContent'; | ||
import CardMedia from '@mui/material/CardMedia'; | ||
import Button from '@mui/material/Button'; | ||
import Typography from '@mui/material/Typography'; | ||
import { Opacity } from "@mui/icons-material"; | ||
|
||
|
||
export default function BoxCard({ }) { | ||
|
||
return ( | ||
<Card sx={{ maxWidth: 345, position:'relative' }}> | ||
<CardMedia | ||
sx={{ height: 140,position: 'relative', opacity: 0.6 }} | ||
image={require("../assets/card-bg.png")} | ||
title="green iguana" | ||
/> | ||
<CardContent> | ||
<Typography gutterBottom variant="h5" component="div" style={{position:'absolute',color:'#fff',fontWeight:'500',fontSize:'16px', top:'30px'}}> | ||
Enable GIS monitoring for SWM | ||
</Typography> | ||
<Typography gutterBottom variant="h7" component="div" style={{position:'absolute',top:'50px',right:'10px'}}> | ||
Courses | ||
</Typography> | ||
<Typography variant="body2" color="text.secondary"> | ||
Engineering Staff College India | ||
</Typography> | ||
</CardContent> | ||
<CardActions> | ||
<Button size="small">SWM</Button> | ||
<Button size="small">Sanitation</Button> | ||
</CardActions> | ||
</Card> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from "react"; | ||
import { Button } from '@mui/base/Button'; | ||
|
||
|
||
export default function Search({ }) { | ||
|
||
return ( | ||
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}> | ||
<input type="text" placeholder="Search..." style={{ flex: 1, marginRight: '0.5rem', padding: '0.5rem', borderRadius: '4px', border: '1px solid #CACACA' }} /> | ||
<Button style={{ padding:'11px 16px 11px 16px', borderRadius: '4px', backgroundColor: '#004367', color: 'white', border: '1px', cursor: 'pointer' ,fontSize:'12px'}}>Search</Button> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.