inviqa-tailwindcss-example/pages/index.js

29 lines
989 B
JavaScript
Raw Permalink Normal View History

2022-09-09 17:00:00 +00:00
import ImageAndText from "../components/ImageAndText";
export default function Home() {
return (
<div>
2022-09-09 17:00:00 +00:00
<div className="flex flex-col justify-center p-24 min-h-screen bg-white dark:bg-[#111111]">
2022-09-09 17:00:00 +00:00
<ImageAndText
buttonText={"Explore this event"}
2022-09-09 17:00:00 +00:00
imageUrl={"/image.jpeg"}
2022-09-09 17:00:00 +00:00
title={"CXcon: Experience Transformation"}
>
<p>
Our second CXcon in October was dedicated to experience
transformation. The free one-day virtual event&nbsp;brought together
230+ heads of digital, thought leaders, and UX practitioners to
discuss all aspects of experience design..
</p>
<p>
In a jam-packed day filled with keynote sessions, panels, and
virtual networking we explored topics including design leadership,
UX ethics, designing for emotion and innovation at scale.
</p>
</ImageAndText>
</div>
</div>
);
}