Skip to content
Merged
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
5 changes: 2 additions & 3 deletions src/components/home/ReviewsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export default function ReviewSection({
alt: 'pcMag Logo',
text: textContent.pcMag,
},
{
logo: darkMode ? '/images/home/NewDesign/pcworld-new.webp' : '/images/home/NewDesign/pcworld-new.webp',
{
logo: '/images/home/NewDesign/pcworld-new.webp',
alt: 'pcworld Logo',
text: textContent.pcWorld,
},
Expand All @@ -74,7 +74,6 @@ export default function ReviewSection({
alt: 'Forbes Logo',
text: textContent.mashable,
},

];

const maxIndex = reviews.length - 1;
Expand Down
3 changes: 1 addition & 2 deletions src/components/templates/dealsTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { PromoCodeName } from '@/lib/types';
import { DealsPageText } from '@/assets/types/freeCloudStorage';
import FloatingCtaSectionv2 from '../shared/FloatingCtaSectionV2';
import HeroSection from '../deals/HeroSection';
import ReviewsSection from '../home/ReviewsSection';
import HorizontalScrollableSection from '../shared/HorizontalScrollableSection';
import MoreDealsSection from '../black-friday/MoreDealsSection';

Expand Down Expand Up @@ -112,7 +111,7 @@ const DealsTemplate = ({
image={config.heroImage}
/>

<ReviewsSection textContent={textContent.ReviewSection} />
{/*<ReviewsSection textContent={textContent.ReviewSection} />+/+*/}

<PricingSectionWrapper
textContent={textContent.tableSection}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/coupons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import FAQSection from '@/components/shared/sections/FaqSection';
import usePricing from '@/hooks/usePricing';
import cookies from '@/lib/cookies';
import { PromoCodeName } from '@/lib/types';
import ReviewsSection from '@/components/home/ReviewsSection';
import { CouponPageText } from '@/assets/types/couponsPage';
import HeroSection from '@/components/coupons/HeroSection';
import HorizontalScrollableSection from '@/components/shared/HorizontalScrollableSection';
Expand Down Expand Up @@ -81,7 +80,7 @@ const HomePage = ({ metatagsDescriptions, textContent, lang, navbarLang, footerL

<HeroSection textContent={textContent.HeroSection} percentOff={percentOff} minimumPrice={minimumPrice} />

<ReviewsSection textContent={textContent.ReviewSection} />
{/*<ReviewsSection textContent={textContent.ReviewSection} />+/+*/}

<PricingSectionWrapper
textContent={textContent.tableSection}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import TrustedSection from '@/components/home/TrustedSection';
import HorizontalScrollableSection from '@/components/home/HorizontalScrollableSection';
import AwardWinningSection from '@/components/home/AwardWinningPrivacySection';
import OfficialCloudProviderSection from '@/components/home/OfficilaCloudProviderSection';
import ReviewsSection from '@/components/home/ReviewsSection';

interface HomeProps {
lang: GetServerSidePropsContext['locale'];
Expand Down Expand Up @@ -81,7 +80,7 @@ const HomePage = ({ metatagsDescriptions, textContent, lang, navbarLang, footerL

<HeroSection textContent={textContent.HeroSection} percentOff={percentOff} minimumPrice={minimumPrice} />

<ReviewsSection textContent={textContent.ReviewSection} />
{/*<ReviewsSection textContent={textContent.ReviewSection} />+/+*/}

<PricingSectionWrapper
textContent={textContent.tableSection}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/reviews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { ReviewsTextPage } from '@/assets/types/reviews';
import SupportSection from '@/components/reviews/support-section';
import VideotSection from '@/components/reviews/VideoSection';
import HeroSection from '@/components/reviews/HeroSection';
import ReviewsSection from '@/components/home/ReviewsSection';
import HorizontalScrollableSection from '@/components/reviews/HorizontalScrollableSection';

interface CleanerProps {
Expand Down Expand Up @@ -38,7 +37,7 @@ const CleanerPage = ({

<HeroSection textContent={textContent.heroSection} />

<ReviewsSection textContent={textContent.ReviewSection} />
{/*<ReviewsSection textContent={textContent.ReviewSection} />+/+*/}

<HorizontalScrollableSection textContent={textContent.ReviewFromIndustrySection} />

Expand Down
Loading