Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e486df3e06 | |||
| f11ead02f2 | |||
| 2dce7c1f45 | |||
| eed11e972c | |||
| e6e84a41de | |||
| 47395c3bef | |||
| fae603a28d |
@@ -5,6 +5,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
|||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { TrendingUp, Sparkles, Zap, Users, BarChart3, Shield } from "lucide-react";
|
import { TrendingUp, Sparkles, Zap, Users, BarChart3, Shield } from "lucide-react";
|
||||||
@@ -102,6 +103,20 @@ export default function AboutPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="testimonials-featured" data-section="testimonials-featured">
|
||||||
|
<TestimonialCardFive
|
||||||
|
testimonials={[
|
||||||
|
{
|
||||||
|
id: "1", name: "David Williams", date: "December 2024", title: "Portfolio Director", quote: "My Trade has revolutionized how our team manages cryptocurrency portfolios. The advanced analytics and real-time monitoring capabilities have enabled us to make faster, more informed decisions. We couldn't imagine our trading operations without it.", tag: "5 Stars", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/professional-headshot-portrait-of-a-succ-1773136514328-34a1bb04.png", avatarAlt: "David Williams profile photo"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Featured Success Story"
|
||||||
|
description="Hear from our valued clients"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="My Trade"
|
logoText="My Trade"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import TextAbout from '@/components/sections/about/TextAbout';
|
|||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
@@ -31,7 +32,9 @@ export default function HomePage() {
|
|||||||
brandName="My Trade"
|
brandName="My Trade"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Pricing", id: "/pricing" }
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Start Trading", href: "/pricing"
|
text: "Start Trading", href: "/pricing"
|
||||||
@@ -151,6 +154,20 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="testimonials-featured" data-section="testimonials-featured">
|
||||||
|
<TestimonialCardFive
|
||||||
|
testimonials={[
|
||||||
|
{
|
||||||
|
id: "1", name: "James Carter", date: "January 2025", title: "Senior Investment Officer", quote: "This product has completely transformed how we approach cryptocurrency trading. The real-time analytics and risk management tools have helped us optimize our strategies and significantly improve our returns. My Trade is truly the gold standard for professional traders.", tag: "5 Stars", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/professional-headshot-portrait-of-a-succ-1773136514328-34a1bb04.png", avatarAlt: "James Carter profile photo"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
title="Featured Testimonial"
|
||||||
|
description="What our top clients are saying"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Newsletter"
|
tag="Newsletter"
|
||||||
|
|||||||
Reference in New Issue
Block a user