A responsive layout component that creates a perfect square with text overlay. Perfect for showcasing images, videos, or any content that needs to maintain a square aspect ratio while displaying text.
import SquareLayout from "./square-layout";
export default function Page() {
return (
<SquareLayout wideBreakpoint={1.6} narrowBreakpoint={0.7}>
Your content here
</SquareLayout>
);
}
Try it:
<SquareLayout>
<img src="your-image.jpg" alt="Description" />
<p>Your caption or description</p>
</SquareLayout>
<SquareLayout
wideBreakpoint={1.6} // Switch to wide layout when width/height > 1.6
narrowBreakpoint={0.7} // Switch to narrow layout when width/height < 0.7
>
Your content
</SquareLayout>