diff --git a/public/merch/bg-bottom-merch.png b/public/merch/bg-bottom-merch.png new file mode 100644 index 0000000..18383cf Binary files /dev/null and b/public/merch/bg-bottom-merch.png differ diff --git a/public/merch/bg-merch-desktop.png b/public/merch/bg-merch-desktop.png new file mode 100644 index 0000000..940e1de Binary files /dev/null and b/public/merch/bg-merch-desktop.png differ diff --git a/public/merch/bg-merch-mobile.png b/public/merch/bg-merch-mobile.png new file mode 100644 index 0000000..c76a40c Binary files /dev/null and b/public/merch/bg-merch-mobile.png differ diff --git a/src/pages/merchandise.tsx b/src/pages/merchandise.tsx new file mode 100644 index 0000000..8537dc6 --- /dev/null +++ b/src/pages/merchandise.tsx @@ -0,0 +1,42 @@ +import Image from "next/image" + +interface CardProps { + name: string; + price: string; + preorder: string; + src: string; +} + +function Card(props: CardProps) { + return ( +
+ +

{props.preorder}

+

{props.name}

+

{props.price}

+
+ ) +} + +export default function Merch() { + return ( +
+
+

Merchandise

+
+

Gear Up for a New Chapter with

+

Exclusive Preorders!

+
+
+ + + + + + + +
+
+
+ ) +} \ No newline at end of file