devjas1
Initial Release: Polymer Aging With ML [Standalone Appliance]
4a0e21d
Raw
History Blame Contribute Delete
429 Bytes
import React from "react";
import "../static/style.css";
const Header: React.FC = () => {
return (
<div className="header">
<h1 className="header__title">
AI Polymer Classification
</h1>
<p className="header__desc">
AI-driven polymer aging prediction and classification using spectroscopy
and deep learning.
</p>
</div>
);
};
export default Header;