/ packages / frontend / src / components / Contact.tsx
Contact.tsx
 1  import BackButton from "./common/BackButton.tsx";
 2  
 3  export default function Contact() {
 4    return (
 5      <main className="px-4 flex justify-center">
 6        <section className="md:w-[800px] w-full">
 7          <BackButton />
 8          <h1 className="py-3">Contact</h1>
 9          <section className="mt-2 flex flex-col gap-1 bg-white p-5 rounded-lg">
10            <p>
11              If you wish to contact the shop with questions about products or
12              shipping please use the details below:
13            </p>
14            <h3>Email</h3>
15            <p>info@mass.market</p>
16          </section>
17        </section>
18      </main>
19    );
20  }