diff --git a/app/assets/images/features-thumb-01.png b/app/assets/images/features-thumb-01.png new file mode 100644 index 0000000..141cf6a Binary files /dev/null and b/app/assets/images/features-thumb-01.png differ diff --git a/app/components/HomeOne.js b/app/components/HomeOne.js index c88f1e2..51470f0 100644 --- a/app/components/HomeOne.js +++ b/app/components/HomeOne.js @@ -11,6 +11,7 @@ import TrafficHomeTwo from './TrafficHomeTwo'; import AfterHero from './AfterHero'; import NextAfterHero from './NextAfterHero'; import BackToTop from './BackToTop'; +import SelectFeatures from "@/app/components/SelectFeatutes"; @@ -22,8 +23,9 @@ function HomeOne() { + - + {/**/} diff --git a/app/components/SelectFeatutes.js b/app/components/SelectFeatutes.js new file mode 100644 index 0000000..db8a343 --- /dev/null +++ b/app/components/SelectFeatutes.js @@ -0,0 +1,252 @@ +"use client" +import React, { useState } from 'react'; +//import { Link } from 'react-router-dom'; +import thumb from '../assets/images/features-thumb-01.png'; +import shapeSix from '../assets/images/shape/shape-6.png'; +import shapeSeven from '../assets/images/shape/shape-7.png'; +import shapeEight from '../assets/images/shape/shape-8.png'; +import Image from 'next/image'; +function SelectFeatures({ className }) { + const [tab, setTab] = useState('setting'); + const handleClick = (e, value) => { + e.preventDefault(); + setTab(value); + }; + //appie-services-2-area appie-services-8-area pt-90 pb-55 + return ( +
+
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ Custom Reacyions +

+ Let the
Conversation flow +

+

+ Car boot absolutely bladdered posh burke the + wireless mush some dodg. +

+ + Learn More + +
+
+
+
+
+
+
+
+ +
+
+
+
+ Custom Reacyions +

+ Let the
Conversation flow +

+

+ Car boot absolutely bladdered posh burke the + wireless mush some dodg. +

+ + Learn More + +
+
+
+
+
+
+
+
+ +
+
+
+
+ Custom Reacyions +

+ Let the
Conversation flow +

+

+ Car boot absolutely bladdered posh burke the + wireless mush some dodg. +

+ + Learn More + +
+
+
+
+
+
+
+
+ +
+
+
+
+ Custom Reacyions +

+ Let the
Conversation flow +

+

+ Car boot absolutely bladdered posh burke the + wireless mush some dodg. +

+ + Learn More + +
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ ); +} + +export default SelectFeatures;