mirror of
https://github.com/PotentiaRobotics/website.git
synced 2025-04-20 04:10:18 -04:00
27 lines
783 B
JavaScript
27 lines
783 B
JavaScript
import React from "react";
|
|
import "./assets/Blog.scss";
|
|
import hero from "./assets/img/olympian_hero.png";
|
|
|
|
export default function Blog(props) {
|
|
return (
|
|
<body>
|
|
<section className="hero">
|
|
<div className="landing-header">
|
|
<h1 id="potentia"><span className="highlight-gray"> Potentia </span></h1>
|
|
<h1 id="robotics"><span className="highlight-gray"> Robotics </span></h1>
|
|
</div>
|
|
<div className="landing-subheader">
|
|
<p>
|
|
<span className="highlight-gray"> This page is under construction. <br></br> Please check back later! </span>
|
|
</p>
|
|
</div>
|
|
<img
|
|
className="landing-robot"
|
|
src={hero}
|
|
alt=""
|
|
/>
|
|
</section>
|
|
</body>
|
|
);
|
|
}
|