File size: 729 Bytes
5d4f61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

import React from 'react';
import '../Introduction.css';

const Introduction = () => {
    return (
        <div className="introduction-container">
            <h1>Welcome to the Ranking App!</h1>
            <p>
                This application is a tier-ranking tool that allows you to rank items in a tier list. It was originally a .NET weather app API template that has been transformed into this interactive web application.
            </p>
            <p>
                <strong>How it works:</strong> Simply drag and drop the items from the "Unranked" section into the desired tier. The tiers are color-coded to help you visualize your rankings.
            </p>
        </div>
    );
};

export default Introduction;