Move all files to inviqa-tailwindcss-example/

This commit is contained in:
Oliver Davies 2025-09-29 23:19:01 +01:00
parent 6d7993bbaa
commit 225421ac19
26 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp

View file

@ -0,0 +1,28 @@
import ImageAndText from "../components/ImageAndText";
export default function Home() {
return (
<div>
<div className="flex flex-col justify-center p-24 min-h-screen bg-white dark:bg-[#111111]">
<ImageAndText
buttonText={"Explore this event"}
imageUrl={"/image.jpeg"}
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>
);
}