first commit

This commit is contained in:
“dongming”
2025-12-18 22:54:30 +08:00
commit cce2baf1d8
110 changed files with 17872 additions and 0 deletions

29
src/components/header.jsx Normal file
View File

@@ -0,0 +1,29 @@
import React from "react";
export const Header = (props) => {
return (
<header id="header">
<div className="intro">
<div className="overlay">
<div className="container">
<div className="row">
<div className="col-md-8 col-md-offset-2 intro-text">
<h1>
{props.data ? props.data.title : "Loading"}
<span></span>
</h1>
<p>{props.data ? props.data.paragraph : "Loading"}</p>
<a
href="#features"
className="btn btn-custom btn-lg page-scroll"
>
Learn More
</a>{" "}
</div>
</div>
</div>
</div>
</div>
</header>
);
};