convert-next.js
This commit is contained in:
40
src/app/for_people/page.tsx
Normal file
40
src/app/for_people/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user