37 Commits

Author SHA1 Message Date
a7112f1916 Remove watermark 2026-03-14 16:03:05 +00:00
674486ba4b Update src/app/page.tsx 2026-03-12 19:29:24 +00:00
4a2db32f8a Merge version_16 into main
Merge version_16 into main
2026-03-12 19:01:45 +00:00
15a6d27ac6 Update src/app/page.tsx 2026-03-12 19:01:41 +00:00
446b9b21b9 Merge version_15 into main
Merge version_15 into main
2026-03-12 18:57:45 +00:00
9410399322 Update src/app/page.tsx 2026-03-12 18:57:41 +00:00
1e3035b2ec Merge version_14 into main
Merge version_14 into main
2026-03-12 18:52:31 +00:00
4925ec69bd Update src/app/page.tsx 2026-03-12 18:52:27 +00:00
7aacd08780 Merge version_13 into main
Merge version_13 into main
2026-03-12 18:50:16 +00:00
d161dc63f0 Update src/app/page.tsx 2026-03-12 18:50:12 +00:00
6c24bdae6e Merge version_13 into main
Merge version_13 into main
2026-03-12 18:49:36 +00:00
3288738f91 Update src/app/page.tsx 2026-03-12 18:49:33 +00:00
14fc70c992 Merge version_10 into main
Merge version_10 into main
2026-03-12 18:48:11 +00:00
c7739b2032 Update src/app/page.tsx 2026-03-12 18:48:07 +00:00
86d112e1ce Switch to version 10: modified src/app/page.tsx 2026-03-12 18:45:33 +00:00
0bc76ef45a Switch to version 11: modified src/app/page.tsx 2026-03-12 18:45:10 +00:00
de078e2cb0 Switch to version 9: modified src/app/page.tsx 2026-03-12 18:40:34 +00:00
6cf16c2218 Switch to version 10: modified src/app/page.tsx 2026-03-12 18:40:16 +00:00
28c4487015 Merge version_11 into main
Merge version_11 into main
2026-03-12 18:39:23 +00:00
15b902ecc3 Update src/app/page.tsx 2026-03-12 18:39:19 +00:00
0459d0de9e Merge version_10 into main
Merge version_10 into main
2026-03-12 18:37:45 +00:00
0a0d2b59cf Update src/app/page.tsx 2026-03-12 18:37:41 +00:00
1a80771906 Merge version_10 into main
Merge version_10 into main
2026-03-12 18:35:31 +00:00
8d840828eb Update src/app/page.tsx 2026-03-12 18:35:28 +00:00
cc77e79a20 Merge version_9 into main
Merge version_9 into main
2026-03-12 18:33:40 +00:00
c0e2cf7cbe Update src/app/page.tsx 2026-03-12 18:33:36 +00:00
c13daf8163 Merge version_8 into main
Merge version_8 into main
2026-03-12 18:31:40 +00:00
ae163a4b2b Update src/app/page.tsx 2026-03-12 18:31:36 +00:00
64c2a7283e Merge version_8 into main
Merge version_8 into main
2026-03-03 12:56:46 +00:00
259990b195 Update src/app/page.tsx 2026-03-03 12:56:41 +00:00
7215ada6e2 Merge version_7 into main
Merge version_7 into main
2026-03-03 12:50:50 +00:00
3e997add9e Update src/app/page.tsx 2026-03-03 12:50:46 +00:00
90591a26d4 Merge version_7 into main
Merge version_7 into main
2026-03-03 12:48:08 +00:00
f108ecaea4 Update src/app/page.tsx 2026-03-03 12:48:04 +00:00
3cba7d5077 Merge version_6 into main
Merge version_6 into main
2026-03-03 12:43:29 +00:00
c00c3cf268 Update src/app/page.tsx 2026-03-03 12:43:24 +00:00
c98bda084f Merge version_5 into main
Merge version_5 into main
2026-03-03 12:38:24 +00:00
2 changed files with 13 additions and 57 deletions

View File

@@ -3,7 +3,6 @@ import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
@@ -41,7 +40,7 @@ export default function RootLayout({
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script

View File

@@ -6,10 +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 TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Award, BarChart3, CheckCircle, ClipboardList, DollarSign, Sparkles, Star, Target, TrendingUp, Users, Zap, Shield } from 'lucide-react';
import { Award, BarChart3, CheckCircle, ClipboardList, DollarSign, Sparkles, Target, TrendingUp, Users, Zap, Shield } from 'lucide-react';
import Image from 'next/image';
export default function LandingPage() {
return (
@@ -31,7 +31,6 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "Results", id: "results" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Start Now", href: "contact" }}
@@ -47,30 +46,18 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "glowing-orb" }}
imageSrc="http://img.b2bpic.net/free-photo/landmarks-shanghai_1359-1099.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQzoj29wXnmZL7I0lqwKhA2SM2/uploaded-1772541756005-i1d7tli4.jpg?_wi=1"
imageAlt="Professional financial services"
imagePosition="right"
mediaAnimation="slide-up"
testimonials={[
{
name: "Marcus Johnson", handle: "Client, Chicago IL", testimonial: "RIZE helped me increase my credit score by 127 points in just 6 months. I finally got approved for a mortgage!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg"
},
{
name: "Sarah Martinez", handle: "Client, Austin TX", testimonial: "Professional, transparent, and results-driven. They walked me through every step and I couldn't be happier.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg"
},
{
name: "David Chen", handle: "Client, Seattle WA", testimonial: "Best investment I made for my financial future. Now I have better lending options and lower interest rates.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/profile-portrait-young-asian-businessman_1262-1572.jpg"
}
]}
testimonials={[]}
buttons={[
{ text: "Repair My Credit Now", href: "contact" },
{ text: "Learn More", href: "services" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
fixedMediaHeight={false}
/>
</div>
@@ -79,7 +66,7 @@ export default function LandingPage() {
tag="About Rize Financial"
tagIcon={Shield}
tagAnimation="slide-up"
title="Real People. Real Results. Real Financial Freedom."
title="Real People, Real Results, Real Financial Freedom."
useInvertedBackground={true}
buttons={[
{ text: "See Our Difference", href: "results" }
@@ -202,38 +189,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="What Our Clients Say"
description="Real stories from real people who transformed their financial futures with Rize Financial"
tag="Testimonials"
tagIcon={Star}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Marcus Johnson, Chicago IL", date: "Date: October 2024", title: "From Rejected to Approved in 6 Months", quote: "RIZE increased my credit score by 127 points in just 6 months. I was getting rejected for every loan until they helped me. Now I own my own home. I can't thank them enough for believing in my comeback.", tag: "Home Owner", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Marcus Johnson", imageSrc: "http://img.b2bpic.net/free-photo/couple-laying-down-floor-their-new-apartment-boyfriend-giving-keys-his-girlfriend_482257-22238.jpg", imageAlt: "Success story"
},
{
id: "2", name: "Sarah Martinez, Austin TX", date: "Date: September 2024", title: "Professional and Transparent Process", quote: "What impressed me most was their transparency. They walked me through every single step, explained everything clearly, and actually delivered results. Best investment I made for my future.", tag: "Business Owner", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg", avatarAlt: "Sarah Martinez", imageSrc: "http://img.b2bpic.net/free-photo/sad-dismissed-man-holding-box-with-belongings-after-being-fired-while-his-collegues-looking-hom-working-startup-office-businesspeople-brainstorming-ideas-developing-marketing-project_482257-40109.jpg", imageAlt: "Business success"
},
{
id: "3", name: "David Chen, Seattle WA", date: "Date: August 2024", title: "Got My Life Back On Track", quote: "After years of financial struggles, RIZE gave me hope and a concrete plan. My score went up, I refinanced my car at a much better rate, and now I have options I never thought possible.", tag: "Financial Freedom", avatarSrc: "http://img.b2bpic.net/free-photo/profile-portrait-young-asian-businessman_1262-1572.jpg", avatarAlt: "David Chen", imageSrc: "http://img.b2bpic.net/free-photo/jars-with-money-yellow-piggy-bank_23-2148305985.jpg", imageAlt: "Financial recovery"
},
{
id: "4", name: "Jennifer Lopez, Miami FL", date: "Date: July 2024", title: "Exceeded All My Expectations", quote: "I came to RIZE skeptical after being burned before. Their team was patient, professional, and truly cared about my situation. They delivered exactly what they promised and more.", tag: "Debt Free", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-young-businesswoman-smiling-camera_74855-3966.jpg", avatarAlt: "Jennifer Lopez", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-happy-carefree-woman-with-curly-hair-keeps-arms-raised-up-enjoys-life-poses-daytime-city-wears-jacket-jeans-looks-overhead-has-cheerful-expression_273609-55849.jpg", imageAlt: "Debt freedom"
},
{
id: "5", name: "Robert Williams, Denver CO", date: "Date: June 2024", title: "Worth Every Penny", quote: "The ROI on using RIZE's services was immediate. I qualified for business funding I never could have gotten before. This has been life-changing for my company.", tag: "Business Funding", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Robert Williams", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-desk-celebrating-achievements_1163-5467.jpg", imageAlt: "Business growth"
},
{
id: "6", name: "Michelle Rodriguez, Los Angeles CA", date: "Date: May 2024", title: "A Second Chance at Life", quote: "I felt hopeless until I found RIZE. They showed me that my past doesn't define my future. Now I have better rates, better terms, and better peace of mind.", tag: "New Beginning", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg", avatarAlt: "Michelle Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/sprout-makes-way-through-sand_1398-3828.jpg", imageAlt: "New opportunities"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get Started"
@@ -243,21 +198,23 @@ export default function LandingPage() {
description="Start your journey to better credit and new opportunities today—with zero obligation. Our team is ready to help you succeed."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/three-cheerful-businesspeople-giving-five-smiling-confident-happy-colleagues-celebrating-successful-deal-together-standing-outdoors-rising-hand-up-teamwork-partnership-concept_74855-7845.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQzoj29wXnmZL7I0lqwKhA2SM2/uploaded-1772541756005-i1d7tli4.jpg?_wi=2"
imageAlt="Financial success"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Claim Your Free Credit Analysis"
termsText="We respect your privacy. Your consultation request will be handled securely."
termsText="We respect your privacy. Your consultation request will be handled securely. Zero obligation—just expert guidance to help you succeed."
mediaWrapperClassName="w-full h-full object-cover object-center"
mediaClassName="w-full h-full object-cover object-center"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Rize Financial"
logoText=""
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
rightLink={{ text: "© 2024 Rize Financial. All rights reserved.", href: "#" }}
/>
</div>
</ThemeProvider>