diff --git a/app/myrefer/Hero.tsx b/app/myrefer/Hero.tsx new file mode 100644 index 0000000..773d6d6 --- /dev/null +++ b/app/myrefer/Hero.tsx @@ -0,0 +1,95 @@ +"use client" +import React from 'react'; +import Image from 'next/image'; +import { useParams } from 'next/navigation'; + +import cardImg from '../assets/images/home/wrench-card-only.png' +import wrenchAgent from '../assets/images/home/wrench-agent.png' +// import bg from '../assets/images/background-bg.jpg' + +function Hero() { + const {refer_link} = useParams() + + return ( + <> +
+
+
+
+
+

+ {/* We bring everything
+ that's required to build apps */} + Set Chores, Set Goals +

+
+
+
+
+
+
+
+
+

+ Reward Accomplishments +

+

+ On WrenchBoard, set goals, tasks, or anything else that motivates or needs to be done, and reward completion. WrenchBoard is the platform for planning rewards, engaging, and connecting with family. +

+ +
+
+ +
+
+
+
+
+
+
+
+
+

+ Assign Faster with
+ wrenchAgent +

+

+ Ask our ❛❛wrenchAgent❜❜ Generative AI to assist +

+ +
+
+
+ +
+
+
+
+
+
+
+ + ); +} + +export default Hero; diff --git a/app/myrefer/[refer_link]/page.tsx b/app/myrefer/[refer_link]/page.tsx new file mode 100644 index 0000000..c127f61 --- /dev/null +++ b/app/myrefer/[refer_link]/page.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import HomeNav from '../../components/navigation/HomeNav'; +import Hero from '../Hero'; +import FooterHomeOne from '../../components/FooterHomeOne'; +import BackToTop from '../../components/BackToTop'; + +// must be a better way to centralize the style = TEMPORARY USE +import '../../assets/css/bootstrap.min.css'; +import '../../assets/css/custom-animated.css'; +import '../../assets/css/default.css'; +import '../../assets/css/font-awesome.min.css'; +import '../../assets/css/magnific-popup.css'; +import '../../assets/css/main.css'; +import '../../assets/css/style.css'; + +export default function page() { + return ( + <> + +
+ + + + + ); +}