convert-next.js

This commit is contained in:
R-Bharathraj
2026-06-29 18:07:43 +05:30
parent 4760f8e063
commit 0140b0bdf8
1474 changed files with 16523 additions and 9272 deletions

View File

@@ -0,0 +1,40 @@
'use client';
import React from 'react';
import VerticalScrollWrapper from '@/components/for-people/VerticalScrollWrapper';
import HeroSection from '@/components/for-people/HeroSection';
import WhyLoyalySection from '@/components/for-people/WhyLoyalySection';
import DiscoverDealsSection from '@/components/for-people/DiscoverDealsSection';
import EarnRewardsSection from '@/components/for-people/EarnRewardsSection';
import SpendAnywhereSection from '@/components/for-people/SpendAnywhereSection';
import AIRecommendationsSection from '@/components/for-people/AIRecommendationsSection';
import ExperienceSection from '@/components/for-people/ExperienceSection';
import FinalCTASection from '@/components/for-people/FinalCTASection';
const SECTIONS = [
'Intro',
'The Gap',
'Discover',
'Earn',
'Spend',
'Intelligence',
'Experience',
'Get Started',
];
export default function ForPeoplePage() {
return (
<main style={{ background: '#ffffff' }}>
<VerticalScrollWrapper sections={SECTIONS}>
<HeroSection />
<WhyLoyalySection />
<DiscoverDealsSection />
<EarnRewardsSection />
<SpendAnywhereSection />
<AIRecommendationsSection />
<ExperienceSection />
<FinalCTASection />
</VerticalScrollWrapper>
</main>
);
}