diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-01 23:53:01 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-01 23:53:01 -0400 |
commit | 883a907350ceb06a9aac7f2e45d84179ba220d20 (patch) | |
tree | f2d506a7f57b52e39a49dec2c570ef3558e048e8 /src/views/Landing | |
parent | 5e54da8271c7fac5062f0aca9b10e7370fd4bae2 (diff) | |
download | donetick-frontend-883a907350ceb06a9aac7f2e45d84179ba220d20.tar.gz donetick-frontend-883a907350ceb06a9aac7f2e45d84179ba220d20.tar.bz2 donetick-frontend-883a907350ceb06a9aac7f2e45d84179ba220d20.zip |
Remove commented out code and unused import in Landing.jsx, refactor CreateThingModal.jsx for improved readability
Diffstat (limited to 'src/views/Landing')
-rw-r--r-- | src/views/Landing/Landing.jsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/views/Landing/Landing.jsx b/src/views/Landing/Landing.jsx index 2041e42..6d3a1ce 100644 --- a/src/views/Landing/Landing.jsx +++ b/src/views/Landing/Landing.jsx @@ -5,7 +5,6 @@ import { useEffect, useState } from 'react' import { useNavigate } from 'react-router-dom' import FeaturesSection from './FeaturesSection' import HomeHero from './HomeHero' -import PricingSection from './PricingSection' const Landing = () => { const Navigate = useNavigate() const getCurrentUser = () => { @@ -24,7 +23,7 @@ const Landing = () => { <Container className='flex h-full items-center justify-center'> <HomeHero /> <FeaturesSection /> - <PricingSection /> + {/* <PricingSection /> */} </Container> ) } |