Skip to content

Commit

Permalink
Merge pull request #360 from Mradul-code/main
Browse files Browse the repository at this point in the history
removed unrequired files
  • Loading branch information
dhairyagothi authored Oct 21, 2024
2 parents 28caa2a + c317c46 commit bacf013
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 11 deletions.
8 changes: 5 additions & 3 deletions frontend/src/Pages/3Dmaps.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ const HomeClick = () => {
navigate('/'); // Navigates to the home page
};
return (


<>
<button onClick={HomeClick} className='absolute left-0 top-2'>
<img src={backicon} alt="" className='h-[5vh]' />
</button>
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>

Making in Progress</div>
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>3D Maps <br/>Making in Progress</div>


</>

)
}

Expand Down
Empty file removed frontend/src/Pages/ForaFriend.jsx
Empty file.
2 changes: 1 addition & 1 deletion frontend/src/Pages/Herosection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const Herosection = () => {

</div>
<div
className="fixed flex flex-col items-center justify-center py-8 my-auto rounded-full cursor-pointer right-5 -bottom-8 md:-bottom-5"
className="fixed flex flex-col items-center justify-center py-8 my-auto rounded-full cursor-pointer right-5 -bottom-8 md:-bottom-7"
>
<Chatbot/>
<h1 className="text-xs font-bold text-black">Saarthi</h1>
Expand Down
1 change: 0 additions & 1 deletion frontend/src/Pages/hamburger.css

This file was deleted.

Empty file.
Empty file removed frontend/src/components/footer.jsx
Empty file.
27 changes: 21 additions & 6 deletions frontend/src/components/help.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
import React from 'react'
import React from 'react';
import { useNavigate } from 'react-router-dom';
import backicon from '../assets/svg/backicon.svg';
const Help = () => {
const navigate = useNavigate();

const help = () => {

const HomeClick = () => {
navigate('/'); // Navigates to the home page
};
return (
<div className='text-5xl text-black'>help</div>
)
}
<>
<button onClick={HomeClick} className='absolute top-0 left-0'>
<img src={backicon} alt="" className='h-[9vh]' />
</button>
<div className="flex items-center justify-center min-h-screen bg-blue-100">
<h1 className="text-3xl font-semibold text-blue-900">Help Page</h1>

</div>
</>
);
};

export default help
export default Help;

0 comments on commit bacf013

Please sign in to comment.