finished tours section

This commit is contained in:
Yusuf Ipek
2021-05-03 10:31:55 +03:00
parent 11ea48a038
commit 851c0b90c2
9 changed files with 166 additions and 20 deletions
+2 -9
View File
@@ -1,14 +1,7 @@
function ButtonMain(props) {
const { text, animationName, link } = props;
const { text, link, feature } = props;
return (
<a
href="#"
className={
animationName === "move-in--bottom"
? "btn btn--white move-in--bottom"
: "btn btn--white"
}
>
<a href="#" className={feature}>
{text}
</a>
);