refactor: improvements in UI and book consultion option

- Login is not responsive
- Add country field in book consultant any country
- correct form submit of book consultant in mobile view
- updatr email in privacy page
- make home page slider responsive
- redirect login whentokenexpired
This commit is contained in:
2025-05-09 20:09:27 +05:30
parent 8050065359
commit 7e33e61d65
11 changed files with 405 additions and 141 deletions

View File

@@ -67,7 +67,7 @@ const Hero = ({ data }) => {
];
return (
<div className="relative w-full h-[45vh] bg-background">
<div className="relative w-full h-[45vh] md:h-[80vh] bg-background">
<Carousel
plugins={[plugin.current]}
className="w-full h-full"
@@ -77,7 +77,7 @@ const Hero = ({ data }) => {
<CarouselContent>
{heroData.map((item, index) => (
<CarouselItem key={index}>
<div className="relative w-full h-[45vh] overflow-hidden">
<div className="relative w-full h-[45vh] md:h-[80vh] overflow-hidden">
<Image
src={item.src || "/placeholder.svg"}
alt={`Slide ${index + 1}`}