Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
. "$(dirname -- "$0")/_/husky.sh"

npm run lint-fix
npm run build

145 changes: 82 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function TokyoApp(props: TokyoAppProps) {
return (
<CacheProvider value={emotionCache}>
<Head>
<title>Tokyo Free White NextJS Typescript Admin Dashboard</title>
<title>Urja Dashboard</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
Expand Down
12 changes: 10 additions & 2 deletions pages/dashboards/crypto/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import AccountBalance from '@/content/Dashboards/Crypto/AccountBalance';
import Wallets from '@/content/Dashboards/Crypto/Wallets';
import AccountSecurity from '@/content/Dashboards/Crypto/AccountSecurity';
import WatchList from '@/content/Dashboards/Crypto/WatchList';
import BottomBarContent from '@/content/Applications/Messenger/BottomBarContent';
import StepperForms from '@/content/Applications/Messenger/StepperForms';

function DashboardCrypto() {
return (
Expand All @@ -32,14 +34,20 @@ function DashboardCrypto() {
<Grid item xs={12}>
<AccountBalance />
</Grid>
<Grid item lg={8} xs={12}>
{/* <Grid item lg={8} xs={12}>
<Wallets />
</Grid>
<Grid item lg={4} xs={12}>
<AccountSecurity />
</Grid> */}
<Grid item xs={12}>
{/* <WatchList /> */}
</Grid>
{/* <Grid item xs={12}>
<BottomBarContent />
</Grid> */}
<Grid item xs={12}>
<WatchList />
<StepperForms />
</Grid>
</Grid>
</Container>
Expand Down
6 changes: 3 additions & 3 deletions pages/management/profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import Addresses from '@/content/Management/Users/details/Addresses';
function ManagementUserProfile() {
const user = {
savedCards: 7,
name: 'Catherine Pike',
coverImg: '/static/images/placeholders/covers/5.jpg',
avatar: '/static/images/avatars/4.jpg',
name: 'Sudhanshu',
coverImg: '/static/images/placeholders/covers.jpg',
avatar: '/static/images/avatars/profile.jpg',
description:
"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage",
jobtitle: 'Web Developer',
Expand Down
6 changes: 2 additions & 4 deletions pages/status/500/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,14 @@ function Status500() {
<Container maxWidth="sm">
<Box textAlign="center">
<TypographyPrimary variant="h1" sx={{ my: 2 }}>
Tokyo Free White Next.js Typescript Admin Dashboard
Urja App
</TypographyPrimary>
<TypographySecondary
variant="h4"
fontWeight="normal"
sx={{ mb: 4 }}
>
High performance React template built with lots of powerful
Material-UI components across multiple product niches for
fast & perfect apps development processes.
An energy conservation monitoring application
</TypographySecondary>
<Button href="/" size="large" variant="contained">
Overview
Expand Down
Binary file added public/static/images/avatars/profile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Footer() {
>
<Box>
<Typography variant="subtitle1">
&copy; 2022 - Tokyo Free White Next.js Typescript Admin Dashboard
&copy; 2022 - Team ShellShack
</Typography>
</Box>
<Typography
Expand All @@ -29,11 +29,11 @@ function Footer() {
>
Crafted by{' '}
<Link
href="https://bloomui.com"
href=""
target="_blank"
rel="noopener noreferrer"
>
BloomUI.com
ShellShack
</Link>
</Typography>
</Box>
Expand Down
18 changes: 5 additions & 13 deletions src/content/Applications/Messenger/BottomBarContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
InputBase,
useTheme
} from '@mui/material';
import AttachFileTwoToneIcon from '@mui/icons-material/AttachFileTwoTone';
import AddPhotoAlternateIcon from '@mui/icons-material/AddPhotoAlternate';
import SendTwoToneIcon from '@mui/icons-material/SendTwoTone';

const MessageInputWrapper = styled(InputBase)(
Expand All @@ -27,8 +27,8 @@ function BottomBarContent() {
const theme = useTheme();

const user = {
name: 'Catherine Pike',
avatar: '/static/images/avatars/1.jpg'
name: 'Sudhanshu',
avatar: '/static/images/avatars/profile.jpg'
};

return (
Expand All @@ -48,24 +48,16 @@ function BottomBarContent() {
/>
<MessageInputWrapper
autoFocus
placeholder="Write your message here..."
placeholder="Heyy! Why not tell us more about your contribution here..."
fullWidth
/>
</Box>
<Box>
<Tooltip arrow placement="top" title="Choose an emoji">
<IconButton
sx={{ fontSize: theme.typography.pxToRem(16) }}
color="primary"
>
😀
</IconButton>
</Tooltip>
<Input accept="image/*" id="messenger-upload-file" type="file" />
<Tooltip arrow placement="top" title="Attach a file">
<label htmlFor="messenger-upload-file">
<IconButton sx={{ mx: 1 }} color="primary" component="span">
<AttachFileTwoToneIcon fontSize="small" />
<AddPhotoAlternateIcon fontSize="small" />
</IconButton>
</label>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion src/content/Applications/Messenger/ChatContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const CardWrapperSecondary = styled(Card)(

function ChatContent() {
const user = {
name: 'Catherine Pike',
name: 'Sudhanshu',
avatar: '/static/images/avatars/1.jpg'
};

Expand Down
2 changes: 1 addition & 1 deletion src/content/Applications/Messenger/SidebarContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const TabsContainerWrapper = styled(Box)(

function SidebarContent() {
const user = {
name: 'Catherine Pike',
name: 'Sudhanshu',
avatar: '/static/images/avatars/1.jpg',
jobtitle: 'Software Developer'
};
Expand Down
Loading