Files
ScoutingApp2022/webserver/src/Pages/WelcomePage.jsx
T

13 lines
323 B
React
Raw Normal View History

2022-02-03 19:25:32 -07:00
import React from 'react'
2022-01-28 03:55:46 +00:00
import "./WelcomePage.css";
2022-01-28 04:25:56 +00:00
import "../App.css";
2022-02-03 19:25:32 -07:00
const WelcomePage = () => {
return (
2022-02-02 05:37:10 +00:00
<div className="welcome">
2022-01-28 04:02:23 +00:00
<h1>Welcome to Ridgebotics Scouting Web Application 2022</h1>
2022-02-02 05:37:10 +00:00
<img src="/WelcomePageImage.webp" />
2022-02-03 19:25:32 -07:00
</div>
)
}
export default WelcomePage