Skip to content

Instantly share code, notes, and snippets.

@adarsh-gupta101
Created May 8, 2025 17:31
Show Gist options
  • Save adarsh-gupta101/d9860150eedd6a1740bcbb54a68d8b80 to your computer and use it in GitHub Desktop.
Save adarsh-gupta101/d9860150eedd6a1740bcbb54a68d8b80 to your computer and use it in GitHub Desktop.
mport { Button, Card, Image, Text } from "@nextui-org/react";
export default function App() {
return (
<Card css={{ mw: "400px" }}>
{/* center it */}
<Card.Body css={{ textAlign: "center" }}>
<Text h2>Cross Browser Testing</Text>
<Image
src="https://www.lambdatest.com/resources/images/main/home_banner.webp"
alt="Cross Browser Testing"
css={{ my: "1rem" }}
/>
<Text h5>
Cross Browser Testing is a service that allows you to test your
website on different browsers and devices.
LambdaTest is a cloud-based cross browser testing platform that
allows you to test your website on 2000+ real browsers and
operating systems such as Windows, Mac, and Linux.
</Text>
<Button css={{marginTop:15}}>LambdaTest Your Apps</Button>
</Card.Body>
</Card>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment