From cc177b9c5d23a8ee88afe5bb0564f7ea17b126a9 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 12 Sep 2022 17:15:34 +0200 Subject: [PATCH] Created the structure of the Coins component --- src/pages/Coins/Coins.jsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/pages/Coins/Coins.jsx b/src/pages/Coins/Coins.jsx index 7b171d1..0fd42ad 100644 --- a/src/pages/Coins/Coins.jsx +++ b/src/pages/Coins/Coins.jsx @@ -1,5 +1,15 @@ -const Coins = () => { - return (

Coins

) -} +import './styles.sass'; +import StarCoin from '@/assets/StarCoin.png'; + +const Coins = () => ( +
+
+

Only pay for what you really need.

+

Why pay for features you don’t even use? With StarCoins, you only pay for + the features that you really need.

Pay your favourite features once, get them forever.

+
+ StarCoin +
+); export default Coins; \ No newline at end of file