Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added gap between feature's list, dots removed from slider and center… #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/Feature.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ const Feature = () => {
<ScrollAnimationWrapper>

<motion.div className="flex flex-col items-end justify-center ml-auto w-full lg:w-9/12" variants={scrollAnimation}>
<h3 className="text-3xl lg:text-4xl font-medium leading-relaxed text-black-600">
<h3 className="text-3xl lg:text-4xl font-medium leading-relaxed text-black-600 mb-5">
We Provide Many Features You Can Use
</h3>
<p className="my-2 text-black-500">
<p className="my-2 text-black-500 mb-5">
You can explore the features that we provide with fun and have their
own functions each feature.
</p>
<ul className="text-black-500 self-start list-inside ml-8">
{features.map((feature, index) => (
<motion.li
className="relative circle-check custom-list"
className="relative circle-check custom-list space-y-5"
custom={{duration: 2 + index}}
variants={scrollAnimation}
key={feature}
Expand Down
17 changes: 10 additions & 7 deletions components/Layout/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import Twitter from "../../public/assets/Icon/twitter.svg";
import Instagram from "../../public/assets/Icon/instagram.svg";
const Footer = () => {
return (
<div className="bg-white-300 pt-44 pb-24">
<div className="max-w-screen-xl w-full mx-auto px-6 sm:px-8 lg:px-16 grid grid-rows-6 sm:grid-rows-1 grid-flow-row sm:grid-flow-col grid-cols-3 sm:grid-cols-12 gap-4">
<div className="row-span-2 sm:col-span-4 col-start-1 col-end-4 sm:col-end-5 flex flex-col items-start ">
<div className="bg-white-300 pt-44 pb-28">
<div className="max-w-screen-xl w-full mx-auto px-6 sm:px-8 lg:px-16 gap-10 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 mb-10">
<div className=" ">
<LogoVPN className="h-8 w-auto mb-6" />
<p className="mb-4">
<strong className="font-medium">LaslesVPN</strong> is a private
Expand All @@ -24,9 +24,8 @@ const Footer = () => {
<Instagram className="h-6 w-6" />
</div>
</div>
<p className="text-gray-400">©{new Date().getFullYear()} - LaslesVPN</p>
</div>
<div className=" row-span-2 sm:col-span-2 sm:col-start-7 sm:col-end-9 flex flex-col">
<div className="">
<p className="text-black-600 mb-4 font-medium text-lg">Product</p>
<ul className="text-black-500 ">
<li className="my-2 hover:text-orange-500 cursor-pointer transition-all">
Expand All @@ -49,7 +48,7 @@ const Footer = () => {
</li>
</ul>
</div>
<div className="row-span-2 sm:col-span-2 sm:col-start-9 sm:col-end-11 flex flex-col">
<div className="">
<p className="text-black-600 mb-4 font-medium text-lg">Engage</p>
<ul className="text-black-500">
<li className="my-2 hover:text-orange-500 cursor-pointer transition-all">
Expand All @@ -72,7 +71,7 @@ const Footer = () => {
</li>
</ul>
</div>
<div className="row-span-2 sm:col-span-2 sm:col-start-11 sm:col-end-13 flex flex-col">
<div className="">
<p className="text-black-600 mb-4 font-medium text-lg">Earn Money</p>
<ul className="text-black-500">
<li className="my-2 hover:text-orange-500 cursor-pointer transition-all">
Expand All @@ -84,6 +83,10 @@ const Footer = () => {
</ul>
</div>
</div>
{/* copy right */}
<div>
<p className="text-gray-400 text-center">©{new Date().getFullYear()} - LaslesVPN</p>
</div>
</div>
);
};
Expand Down
7 changes: 4 additions & 3 deletions components/Testimoni.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ const Testimoni = ({
<Slider
{...settings}
arrows={false}
dots={false}
ref={setSliderRef}
className="flex items-stretch justify-items-stretch"
>
Expand Down Expand Up @@ -121,16 +122,16 @@ const Testimoni = ({
</div>
))}
</Slider>
<div className="flex w-full items-center justify-end">
<div className="flex w-full items-center justify-center">
<div className="flex flex-none justify-between w-auto mt-14">
<div
className="mx-4 flex items-center justify-center h-14 w-14 rounded-full bg-white border-orange-500 border hover:bg-orange-500 hover:text-white-500 transition-all text-orange-500 cursor-pointer"
className="mx-4 flex items-center justify-center h-10 w-10 rounded-full bg-white border-orange-500 border hover:bg-orange-500 hover:text-white-500 transition-all text-orange-500 cursor-pointer"
onClick={sliderRef?.slickPrev}
>
<ArrowBack className="h-6 w-6 " />
</div>
<div
className="flex items-center justify-center h-14 w-14 rounded-full bg-white border-orange-500 border hover:bg-orange-500 hover:text-white-500 transition-all text-orange-500 cursor-pointer"
className="flex items-center justify-center h-10 w-10 rounded-full bg-white border-orange-500 border hover:bg-orange-500 hover:text-white-500 transition-all text-orange-500 cursor-pointer"
onClick={sliderRef?.slickNext}
>
<ArrowNext className="h-6 w-6" />
Expand Down
Loading