3d626daa0a
The previous `md` breakpoint (768px) caused the desktop layout to activate too early, resulting in a cramped appearance on tablet-sized screens. This commit updates the responsive design by changing the primary breakpoint from `md` to `lg` (1024px) across the home page, contact page, and main layouts. This change ensures a more appropriate and visually balanced layout is maintained on medium-sized devices, improving the overall user experience.
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import ContactUs from "../_contact-us/page";
|
|
|
|
const FooterForm = () => {
|
|
return (
|
|
<div className="absolute w-full -top-[420px] lg:-top-72 z-10">
|
|
<ContactUs />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FooterForm;
|