1 Commits

Author SHA1 Message Date
ae352b7a9e fix 2026-01-30 13:57:10 +02:00
3 changed files with 17 additions and 11 deletions

View File

@@ -7,9 +7,9 @@
--background: #1a202c;;
--card: #1f2a37;;
--foreground: #ffffff;;
--primary-cta: #e91e8f;;
--primary-cta: #00b894;;
--secondary-cta: #008f7a;;
--accent: #e91e8f;;
--accent: #00b894;;
--background-accent: #008f7a;;
/* Base spacing units */
--vw-0_25: calc(var(--vw) * 0.25);

View File

@@ -118,7 +118,7 @@ export default function LandingPage() {
description="Choose the perfect program for your goals and budget"
plans={[
{
id: "starter", price: "$244.5", name: "Starter Course", buttons: [
id: "starter", price: "$499", name: "Starter Course", buttons: [
{ text: "Get Started", href: "contact" },
{ text: "Learn More", href: "contact" }
],
@@ -128,7 +128,7 @@ export default function LandingPage() {
},
{
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
price: "$636.5", name: "Professional Program", buttons: [
price: "$1,299", name: "Professional Program", buttons: [
{ text: "Enroll Now", href: "contact" },
{ text: "Schedule Call", href: "contact" }
],
@@ -137,7 +137,7 @@ export default function LandingPage() {
]
},
{
id: "enterprise", price: "$1,224.5", name: "Enterprise Bootcamp", buttons: [
id: "enterprise", price: "$2,499", name: "Enterprise Bootcamp", buttons: [
{ text: "Start Bootcamp", href: "contact" },
{ text: "Contact Sales", href: "contact" }
],
@@ -209,7 +209,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
tag="Get Started"
title="123"
title="Ready to Transform Your IT Career?"
description="Join thousands of graduates who have successfully launched their careers in technology. Enroll today and take the first step toward your future."
tagIcon={Sparkles}
useInvertedBackground="noInvert"

View File

@@ -6,7 +6,6 @@ import CardStack from "@/components/cardStack/CardStack";
import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
import { ArrowRight } from "lucide-react"; // Import the icon
type Testimonial = {
id: string;
@@ -91,7 +90,16 @@ const TestimonialCard = memo(({
<div className={cls("!absolute z-1 bottom-6 left-6 right-6 card backdrop-blur-xs p-6 flex flex-col gap-3 rounded-theme-capped", overlayClassName)}>
<div className={cls("relative z-1 flex gap-1", ratingClassName)}>
{Array.from({ length: 5 }).map((_, index) => (
<Star
key={index}
className={cls(
"h-5 w-auto text-accent",
index < testimonial.rating ? "fill-accent" : "fill-transparent"
)}
strokeWidth={1.5}
/>
))}
</div>
<h3 className={cls("relative z-1 text-2xl font-medium text-foreground leading-[1.1] mt-1", nameClassName)}>
@@ -182,9 +190,7 @@ const TestimonialCardOne = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
<div className="absolute top-0 left-0 p-4">
<ArrowRight className="w-6 h-6 text-gray-500" /> {/* Inserted icon element */}
</div>
<Button variant="success">Success Button</Button> {/* Inserted button element */}
{testimonials.map((testimonial, index) => (
<TestimonialCard
key={`${testimonial.id}-${index}`}