File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const CitiesSection = ({ title }: { title: string }) => {
3131 if ( error ) return ;
3232
3333 return (
34- < div className = "rounded-md bg-accent/10 px-5 py-6" >
34+ < div className = "rounded-4xl bg-accent/10 px-5 py-6" >
3535 < h5 className = "mb-6 font-semibold text-2xl" > { title } </ h5 >
3636 < div className = "flex flex-wrap justify-between gap-4" >
3737 < div className = "w-full grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-4" >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const SearchBar = () => {
3838 placeholder = "Search for a city, activity, or place"
3939 value = { searchQuery || "" }
4040 onChange = { ( e ) => setSearchQuery ( e . target . value ) }
41- className = "w-full mx-auto rounded-4xl shadow-lg bg-input border border-ring px-14 py-4 text-lg md:text-lg"
41+ className = "w-full mx-auto rounded-4xl shadow-lg bg-background border border-ring px-14 py-4 text-lg md:text-lg"
4242 />
4343 < Button
4444 type = "submit"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import SearchBar from "../Common/search/SearchBar";
33
44const Banner = ( ) => (
55 < >
6- < div className = "bg-[url('/images/main-header.jpg')] bg-cover bg-center h-56 flex justify-center items-center rounded-lg overflow-hidden" >
6+ < div className = "bg-[url('/images/main-header.jpg')] bg-cover bg-center h-56 flex justify-center items-center rounded-xl overflow-hidden" >
77 < h4 className = "text-white text-center text-2xl sm:text-4xl w-full h-full flex items-center justify-center bg-foreground/20" >
88 Plan your perfect day with ease!
99 </ h4 >
You can’t perform that action at this time.
0 commit comments