Compare commits
4 Commits
version_17
...
version_18
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e7ade9208 | |||
| c3b20b768e | |||
| 6415f43055 | |||
| 33a8415703 |
@@ -6,9 +6,10 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Award, BarChart3, CheckCircle, ClipboardList, DollarSign, Sparkles, Target, TrendingUp, Users, Zap, Shield } from 'lucide-react';
|
||||
import { Award, BarChart3, CheckCircle, ClipboardList, DollarSign, Sparkles, Target, TrendingUp, Users, Zap, Shield, Star } from 'lucide-react';
|
||||
import Image from 'next/image';
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -50,7 +51,21 @@ export default function LandingPage() {
|
||||
imageAlt="Professional financial services"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[]}
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah Johnson", handle: "@sarahj", testimonial: "My credit score jumped 127 points in just 6 months. Rize Financial made the entire process so easy.", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Sarah&_wi=1", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
name: "Marcus Chen", handle: "@marcusc", testimonial: "Finally got approved for the loan I needed. Their strategic approach to credit building really works!", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Marcus&_wi=1", imageAlt: "Marcus Chen"
|
||||
},
|
||||
{
|
||||
name: "Emma Rodriguez", handle: "@emmar", testimonial: "Best decision I made for my financial future. The team is professional and genuinely cares about results.", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Emma&_wi=1", imageAlt: "Emma Rodriguez"
|
||||
}
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
buttons={[
|
||||
{ text: "Repair My Credit Now", href: "contact" },
|
||||
{ text: "Learn More", href: "services" }
|
||||
@@ -58,6 +73,15 @@ export default function LandingPage() {
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
fixedMediaHeight={false}
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "✓ Credit Score Boost" },
|
||||
{ type: "text", text: "✓ Dispute Resolution" },
|
||||
{ type: "text", text: "✓ Funding Unlocked" },
|
||||
{ type: "text", text: "✓ Expert Guidance" },
|
||||
{ type: "text", text: "✓ 98% Success Rate" }
|
||||
]}
|
||||
marqueeSpeed={30}
|
||||
showMarqueeCard={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -146,6 +170,42 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
title="What Our Clients Say"
|
||||
description="Join thousands who've transformed their financial lives with Rize Financial"
|
||||
tag="Testimonials"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Entrepreneur", company: "TechStart Inc", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Sarah&_wi=2", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Marcus Chen", role: "Business Owner", company: "Chen Ventures", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Marcus&_wi=2", imageAlt: "Marcus Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emma Rodriguez", role: "Financial Analyst", company: "Global Finance Co", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Emma&_wi=2", imageAlt: "Emma Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", role: "Consultant", company: "Wilson Consulting", rating: 5,
|
||||
imageSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=James", imageAlt: "James Wilson"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Your Journey", href: "contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="howitworks" data-section="howitworks">
|
||||
<FeatureCardTwentyFive
|
||||
title="How Our Process Works"
|
||||
@@ -219,4 +279,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user