Skip to content

Commit

Permalink
review section completed
Browse files Browse the repository at this point in the history
  • Loading branch information
Bornak Paul committed May 2, 2024
1 parent 200bc86 commit 3adbf5a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion components/LandingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const LandingScreen = () => {
<h2 className="animate-slide-right text-[36px] lg:text-[90px] font-light leading-none lg:block mr-2 text-textPrimary mt-8 text-white">
What our customer say..
</h2>
<div className="flex flex-row space-x-12 animate-slide-right">
<div className="flex flex-col lg:flex-row lg:space-x-12 ">
{REVIEWS.map((reviews, index) =>
<div className="flex flex-col mb-12 mt-8">
<div className="overflow-hidden relative lg:w-[350px] text-white flex flex-col items-center w-[200px] text-center">
Expand Down
10 changes: 0 additions & 10 deletions constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,16 +226,6 @@ export const NAV_LINKS = [
'review': "More than the incredible collections, I really appreciate the safe payment options, quick shipping and delivery, and surprise discounts!",
'name':'Dominico Pascal',
},
{
'stars': 4,
'review': "I haven't shopped anywhere else since I discovered Crowd Zero! I love how the clothes are perfect for mixing and matching, and can go from day to night.",
'name':'Alaia Domingo',
},
{
'stars': 5,
'review': "I love how there's a size chart for every collection. Every item I ordered fits like a glove! Thanks for making it easy to build my dream wardrobe.",
'name':'Margot Elsher',
},
];

export const BUY_FROM_US = [
Expand Down
9 changes: 9 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ module.exports = {
],
theme: {
extend: {
animation: {
'infinite-scroll': 'infinite-scroll 5s linear infinite',
},
keyframes: {
'infinite-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
}
},
colors: {
green: {
50: '#30AF5B',
Expand Down

0 comments on commit 3adbf5a

Please sign in to comment.