Skip to content

Commit

Permalink
Merge pull request #28 from phillip-che/Rename-patch
Browse files Browse the repository at this point in the history
Rename CypherChat to SecureChatApplication
  • Loading branch information
phillip-che authored Mar 8, 2024
2 parents 9705e08 + f5f8cab commit de4f638
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 48 deletions.
36 changes: 0 additions & 36 deletions client/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion client/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Roboto } from 'next/font/google';
import { Metadata } from 'next';

export const metadata: Metadata = {
title: 'CypherChat',
title: 'SecureChatApplication',
description: 'Chat privately with anyone with full anonymity',
};

Expand Down
19 changes: 8 additions & 11 deletions client/components/NavBar.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
"use client";
'use client';

import React from 'react'
import React from 'react';
import AppBar from '@mui/material/AppBar';
import Box from '@mui/material/Box';
import Toolbar from '@mui/material/Toolbar';
import Typography from '@mui/material/Typography';
import IconButton from '@mui/material/IconButton';
import Image from 'next/image';
import Logo from '../assets/images/logo.jpg'
import Logo from '../assets/images/logo.jpg';

const NavBar = () => {

return (
<Box color={"black"} sx={{ flexGrow: 1 }}>
<Box color={'black'} sx={{ flexGrow: 1 }}>
<AppBar style={{ background: '#141415' }} position="static">
<Toolbar>
<IconButton
Expand All @@ -21,17 +20,15 @@ const NavBar = () => {
color="inherit"
aria-label="menu"
sx={{ mr: 0 }}
>
</IconButton>
></IconButton>
<Image src={Logo} alt="" width={64} height={40} />
<Typography variant="h6" component="div" sx={{ flexGrow: 1 }}>
CypherChat
SecureChatApplication
</Typography>
</Toolbar>
</AppBar>
</Box>
);
};

}

export default NavBar;
export default NavBar;

0 comments on commit de4f638

Please sign in to comment.