init page is done

This commit is contained in:
Nikolai Petukhov
2024-09-21 13:32:52 +03:00
parent 963c94c262
commit e75288a6f0
8 changed files with 155 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react';
const NavButton = (props) => {
return (
<a className="MyButton singleNavButton" href={props.nav}>
<p className="mclaren-regular">{props.text}</p>
</a>
);
};
export default NavButton;