Skip to content

Commit

Permalink
commented out maintenance banner
Browse files Browse the repository at this point in the history
no longer need maintenance banner because the rent caps have been updated
  • Loading branch information
dsherbini committed Aug 22, 2024
1 parent 016900a commit c792d49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pages/calculator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { zipAndCityFromForm } from '@/utils/zip-and-city';
import { useState } from 'react';

// Adding in a maintenance banner message (8.14.24)
function MaintenanceBanner() {
/*function MaintenanceBanner() {
return (
<div className="maintenance-banner">
<p>
Expand All @@ -27,6 +27,7 @@ function MaintenanceBanner() {
</div>
);
}
*/

interface Props {
serverProvidedLocation: Location | null;
Expand Down Expand Up @@ -70,7 +71,7 @@ const Calculator: NextPage<Props> = function Calculator({
return (
<Layout>
{/* Maintenance Banner inserted below */}
<MaintenanceBanner />
{/*<MaintenanceBanner />*/}
{/* Updated margin top of image below to mt-8 in order to add more padding for mobile viewing */}
<div className="w-44 h-32 md:w-80 md:h-60 mt-8 md:mt-8 relative">
<Image
Expand Down

0 comments on commit c792d49

Please sign in to comment.