Skip to content

Commit

Permalink
small documentation things to drop box
Browse files Browse the repository at this point in the history
  • Loading branch information
eelkus01 committed Jun 4, 2024
1 parent 7fe442c commit 0dc3d91
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
17 changes: 9 additions & 8 deletions client/src/pages/dropBoxLocations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import Image from 'next/image'
export default function DropBoxLocations() {
return (
<div>
<div className='flex flex-col justify-center items-center p-4 text-center my-4'>
<div className='flex flex-col justify-center items-center p-4 text-center mb-10'>
<h1 className='text-blue-700 font-bold text-6xl '>Drop Box Locations</h1>
<p className=''>Find the nearest ballot drop-off station and early voting locations in your area:</p>
<h1 className='font-semibold text-xl p-5'>Find the nearest ballot drop-off station and early voting locations in your area</h1>
</div>

<div className='flex flex-col justify-center items-center p-4 my-10'>
<div className='flex items-center space-x-2'>
<div className='flex items-center space-x-2'>
<BoxField />
<div className='bg-orange-400 rounded-full p-2'>
<SearchIcon/>
Expand All @@ -26,19 +26,20 @@ export default function DropBoxLocations() {
</div>

<div className='relative flex flex-row justify-center items-center p-4 m-10' style={{ left: '-8%' }}>
<Box component="img" sx={{height: 400, width: 400}}
alt="Map" src="/Map.png"/>
<Box component="img" sx={{height: 400, width: 400}} alt="Map" src="/Map.png"/>
<div className='absolute flex flex-col justify-center items-center p-4' style={{ top: '60%', left: '78%', transform: 'translate(-50%, -50%)' }}>
<p className='px-40 py-40 bg-gray-200 rounded-lg'><strong>Ballot Dropbox: </strong> 149 Dudley</p>
<p className='px-40 py-40 bg-gray-200 rounded-lg'>
<strong>Ballot Dropbox:</strong>
149 Dudley
</p>
</div>
</div>
</div>

<div className='flex flex-col justify-center items-center p-4 my-10'>
<p className=' font-semibold p-4'>You may be wondering.....</p>
<ButtonFill name='What&#39;s on the Ballot' link='/ballotInfo' variant='outlined' className='p-4 m-4 rounded-full bg-white text-blue-700 border-blue-800 hover:bg-gray-100' />
<ButtonFill name='Basic Election Info' link='/upcomingElections' variant='outlined' className='p-4 m-4 rounded-full bg-white text-blue-700 border-blue-800 hover:bg-gray-100' />
</div>
</div>

)
}
1 change: 0 additions & 1 deletion client/src/pages/votingOptions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import DropDownInfo from './DropDownInfo';
const VotingOptions = () => {
return (
<div className=''>

<div className='flex flex-col justify-center items-center p-4 text-center mb-10'>
<h1 className='text-blue-700 font-bold text-6xl '>Voting Options</h1>
<h1 className='font-semibold text-xl p-5'>Everything you need to know about your voting options made simple!</h1>
Expand Down

0 comments on commit 0dc3d91

Please sign in to comment.