diff --git a/components/sections/home-page/Newsletter.tsx b/components/sections/home-page/Newsletter.tsx index a8c61c6d6..2f4ef81f8 100644 --- a/components/sections/home-page/Newsletter.tsx +++ b/components/sections/home-page/Newsletter.tsx @@ -11,37 +11,37 @@ import StrokeR3 from '../../../public/background-strokes/_3_rightStroke.svg' import StrokeL3 from '../../../public/background-strokes/_3_leftStroke.svg' const Newsletter = () => { - const handleSubscribeClick = () => { - window.open("https://news.opensauced.pizza/#/portal/signup", "_blank"); - }; + const handleSubscribeClick = () => { + window.open('https://news.opensauced.pizza/#/portal/signup', '_blank') + } - return ( - - - - - - - - - - - - $orange-to-yellowThe fast track$orange-to-yellow to open source - - - Stay up to date with the latest OpenSauced news and trends. - - - - Subscribe - - - - - ) + return ( + + + + + + + + + + + + $orange-to-yellowThe fast track$orange-to-yellow to open source + + + Stay up to date with the latest OpenSauced news and trends. + + + + Subscribe + + + + + ) } export default Newsletter