13 lines
428 B
JavaScript
13 lines
428 B
JavaScript
import React from "react";
|
|
|
|
const Statistics = () => {
|
|
return (
|
|
<div style={{height: "100vh", width: "100vw", display: "flex", position: "relative", paddingTop: "5vh"}}>
|
|
<h1 className="text-2xl font-bold mb-4">About This Application</h1>
|
|
<p>This application provides real-time and permanent data on Irish Rail, Luas, and bus services.</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Statistics;
|