first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
'use client'
import Image from "next/image";
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function Testimonial() {
const settings = {
dots: false,
arrow: true,
infinite: true,
speed: 900,
slidesToShow: 1,
slidesToScroll: 1,
autoplay: false,
margin: 30,
};
const TestimonilContent = [
{
desc: ` Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerImg: "img_20",
reviewerName: "Jannatul Ekra",
designation: "Designer",
},
{
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerImg: "img_20",
reviewerName: "Bostami Hasan",
designation: "Front-end Engineer",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div
className="item"
key={i}
data-aos="fade-up"
data-aos-duration="1200"
>
<p className="font-rubik">{val.desc}</p>
<div className="d-lg-flex align-items-center">
<Image width={51} height={51}
src={`/images/media/${val.reviewerImg}.png`}
alt="image"
className="c_img"
/>
<div className="info">
<strong>{val.reviewerName}</strong> <span>{val.designation}</span>
</div>
</div>
</div>
))}
</Slider>
);
}
@@ -0,0 +1,45 @@
'use client'
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function TestimonialThree() {
const settings = {
dots: false,
arrow: true,
infinite: true,
speed: 900,
slidesToShow: 1,
slidesToScroll: 1,
autoplay: false,
margin: 30,
};
const TestimonilContent = [
{
desc: ` Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Jannatul Ekra",
designation: "Designer",
},
{
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Bostami Hasan",
designation: "Developer",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<p>{val.desc}</p>
<div className="name">{val.reviewerName}</div>
<span>{val.designation}</span>
</div>
))}
</Slider>
);
}
+100
View File
@@ -0,0 +1,100 @@
'use client'
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
import Image from "next/image";
export default function TestimonialFour() {
const settings = {
dots: true,
arrow: false,
infinite: true,
speed: 900,
slidesToShow: 3,
slidesToScroll: 1,
autoplay: false,
responsive: [
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: 1,
},
},
],
};
const TestimonilContent = [
{
img: "77",
desc: `Latin derived from Cicero's 1st-century BC text De Finibus Bonoru et Malorum print demo version.`,
reviewerName: "Jannatul Ekra",
country: "USA",
stars: ["fa-star", "fa-star", "fa-star", "fa-star", "fa-star-o"],
},
{
img: "77",
desc: `Placeholder text commonly used in the graphic, print, and industries for preview layouts & visual`,
reviewerName: "Bostami Hasan",
country: "USA",
stars: ["fa-star", "fa-star", "fa-star", "fa-star", "fa-star-o"],
},
{
img: "77",
desc: `From its medieval origins to the digital er, learn everything there is to know about the ubiquitous`,
reviewerName: "Kuyeti Krima",
country: "USA",
stars: ["fa-star", "fa-star", "fa-star", "fa-star", "fa-star-o"],
},
{
img: "77",
desc: `Latin derived from Cicero's 1st-century BC text De Finibus Bonoru et Malorum print demo version.`,
reviewerName: "Zibaiya Reian",
country: "USA",
stars: ["fa-star", "fa-star", "fa-star", "fa-star", "fa-star-o"],
},
{
img: "77",
desc: `Placeholder text commonly used in the graphic, print, and industries for preview layouts & visual`,
reviewerName: "Riana Sariya",
country: "USA",
stars: ["fa-star", "fa-star", "fa-star", "fa-star", "fa-star-o"],
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<div className="feedback-wrapper">
<Image width={52} height={52}
src={`/images/icon/${val.img}.svg`}
alt="icon"
className="icon"
/>
<p>{val.desc}</p>
<div className="d-sm-flex justify-content-between align-items-center">
<h6 className="name">
{val.reviewerName},<span>{val.country}</span>
</h6>
<ul className="d-flex">
{val.stars.map((star, i) => (
<li key={i}>
<i className={`fa ${star}`} aria-hidden="true"></i>
</li>
))}
</ul>
</div>
</div>
</div>
))}
</Slider>
);
}
+104
View File
@@ -0,0 +1,104 @@
'use client'
import Image from "next/image";
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function TestimonialSeven() {
const settings = {
dots: true,
arrow: false,
infinite: true,
speed: 900,
slidesToShow: 3,
slidesToScroll: 1,
autoplay: false,
centerMode: true,
centerPadding: "0",
responsive: [
{
breakpoint: 1199,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: 1,
},
},
],
};
const TestimonilContent = [
{
img: "img_79",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Jannatul Ekra",
country: "USA",
bgColor: "#FF47E2",
},
{
img: "img_78",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Bostami Hasan",
country: "USA",
bgColor: "#00E5F3",
},
{
img: "img_79",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Kuyeti Krima",
country: "USA",
bgColor: "#FFCF24",
},
{
img: "img_80",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Zibaiya Reian",
country: "USA",
bgColor: "#8F6BF6",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<div className="feedback-wrapper">
<span className="ribbon" style={{ background: val.bgColor }}></span>
<p>{val.desc}</p>
<div className="d-flex align-items-center">
<Image width={43} height={43}
src={`/images/media/${val.img}.png`}
alt="icon"
className="avatar"
/>
<h6 className="name">
{val.reviewerName},<span>{val.country}</span>
</h6>
</div>
</div>
{/* End .feedback-wrapper */}
</div>
))}
</Slider>
);
}
+94
View File
@@ -0,0 +1,94 @@
'use client'
import Image from "next/image";
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function TestimonialSix() {
const settings = {
dots: true,
arrow: false,
infinite: true,
speed: 900,
slidesToShow: 3,
slidesToScroll: 1,
autoplay: false,
centerMode: true,
centerPadding: "0",
responsive: [
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: 1,
},
},
],
};
const TestimonilContent = [
{
img: "img_79",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Jannatul Ekra",
country: "USA",
},
{
img: "img_78",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Bostami Hasan",
country: "USA",
},
{
img: "img_79",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Kuyeti Krima",
country: "USA",
},
{
img: "img_80",
desc: ` Already closed 1 deal from Accelerator and in the process of
closing 2 more now. Have “a few others” that will be closing
in the near future!`,
reviewerName: "Zibaiya Reian",
country: "USA",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<div className="feedback-wrapper">
<p>{val.desc}</p>
<div className="d-flex align-items-center">
<Image width={43} height={43}
src={`/images/media/${val.img}.png`}
alt="icon"
className="avatar"
/>
<h6 className="name">
{val.reviewerName},<span>{val.country}</span>
</h6>
</div>
</div>
{/* End .feedback-wrapper */}
</div>
))}
</Slider>
);
}
@@ -0,0 +1,51 @@
'use client'
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function TestimonialThree() {
const settings = {
dots: false,
arrow: true,
infinite: true,
speed: 900,
slidesToShow: 1,
slidesToScroll: 1,
autoplay: false,
margin: 30,
};
const TestimonilContent = [
{
desc: ` Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Jannatul Ekra",
designation: "Designer",
},
{
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Bostami Hasan",
designation: "Front-end Engineer",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div
className="item"
key={i}
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="100"
>
<p>{val.desc}</p>
<h6 className="name">{val.reviewerName}</h6>
<span className="desig">{val.designation}</span>
</div>
))}
</Slider>
);
}
+84
View File
@@ -0,0 +1,84 @@
'use client'
import Image from "next/image";
import React from "react";
import Slider from "react-slick";
import "slick-carousel/slick/slick.css";
import "slick-carousel/slick/slick-theme.css";
export default function TestimonialTwo() {
const settings = {
dots: true,
arrow: false,
infinite: true,
speed: 900,
slidesToShow: 3,
slidesToScroll: 1,
autoplay: false,
centerMode: true,
centerPadding: "0",
responsive: [
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: 1,
},
},
],
};
const TestimonilContent = [
{
img: "logo-8",
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Jannatul Ekra",
designation: "Designer",
},
{
img: "logo-9",
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Bostami Hasan",
designation: "Front-end Engineer",
},
{
img: "logo-10",
desc: ` Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Kuyeti Krima",
designation: "Visual Designer",
},
{
img: "logo-9",
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Zibaiya Reian",
designation: "Motion Graphy Expert",
},
{
img: "logo-10",
desc: `Having a home based business is a wonderful asset to your life. The problem still stands it comes time advertise your business for a cheap cost. I know you have looked answer everywhere.`,
reviewerName: "Riana Sariya",
designation: "Digital Photographer",
},
];
return (
<Slider {...settings}>
{TestimonilContent.map((val, i) => (
<div className="item" key={i}>
<div className="bg-wrapper">
<Image width={158} height={49} style={{objectFit:'contain'}} src={`/images/logo/${val.img}.png`} alt="image" className="logo" />
<p>{val.desc}</p>
<div className="name">{val.reviewerName}</div>
<div className="desig">{val.designation}</div>
</div>
{/* /.bg-wrapper */}
</div>
))}
</Slider>
);
}