sparkletown/sparkle

View on GitHub
src/pages/Account/Step6a.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

import { PLAYA_IMAGE, PLAYA_VENUE_NAME } from "settings";

import "firebase/storage";

import "./Account.scss";

const Step6 = () => {
  return (
    <div className="splash-page-container">
      <img
        className="playa-img"
        src={PLAYA_IMAGE}
        alt={`${PLAYA_VENUE_NAME} Background Map`}
      />
      <div className="step-container step4-container">
        <div className="login-container">
          <h2>HEROIC EXPERIENCE GOES HERE</h2>
        </div>
      </div>
    </div>
  );
};

export default Step6;