Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
meetarora10 committed Aug 20, 2024
1 parent 201b5d4 commit fe02f29
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Binary file added components/Logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import MenuItem from "@mui/material/MenuItem";
import { Link as ScrollLink, scroller, Events } from "react-scroll";
import { useTheme } from "@mui/material/styles";
import useMediaQuery from "@mui/material/useMediaQuery";
import Logo from './Logo.jpg';
import "./navbar.css";

const pages = [
Expand Down Expand Up @@ -174,7 +175,13 @@ function ResponsiveAppBar() {
</Button>
))}
</Box>

<Box sx={{ display: "flex", alignItems: "center" }}>
<img
src={Logo}
alt="Logo"
style={{ height: "55px", width: "60px", marginRight: "5px" }}
/>
</Box>
<Box
sx={{
flexGrow: 1,
Expand Down
4 changes: 2 additions & 2 deletions pages/guide.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Guide = () => {
return (
<div id='guide' className='bg-gradient-to-b from-blue-400 to-blue-500 text-white'>
{/* Submission Guidelines */}
<section id='submission-guideline' className='py-12'>
<section id='submission-guideline' className='py-12 text-justify'>
<div className='container mx-auto px-[8%] md:px-[15%] pt-20'>
<div className='bg-blue-400 p-8 rounded-lg shadow-lg border-white border'>
<h1 className='text-[#c00000] text-3xl font-bold text-center mb-4'>PAPER SUBMISSION GUIDELINES</h1>
Expand All @@ -30,7 +30,7 @@ const Guide = () => {
</section>

{/* Author Guidelines */}
<section id='author-guideline' className='py-12'>
<section id='author-guideline' className='py-12 text-justify'>
<div className='container mx-auto px-[8%] md:px-[15%] py-20'>
<div className='bg-gradient-to-b from-blue-400 to-blue-500 p-8 rounded-lg shadow-lg border border-white '>
<h1 className='text-[#c00000] text-3xl font-bold text-center mb-4'>AUTHOR GUIDELINES</h1>
Expand Down

0 comments on commit fe02f29

Please sign in to comment.