Compare commits

..

6 Commits

3 changed files with 34 additions and 1 deletions

View File

@@ -151,7 +151,11 @@ const ContactSplitForm = ({
<Textarea
placeholder={textarea.placeholder}
value={formData[textarea.name] || ""}
onChange={(value) => setFormData({ ...formData, [textarea.name]: value })}
onChange={(value) => {
if (value.length <= 500) {
setFormData({ ...formData, [textarea.name]: value });
}
}}
required={textarea.required}
rows={textarea.rows || 5}
ariaLabel={textarea.placeholder}
@@ -159,6 +163,14 @@ const ContactSplitForm = ({
/>
)}
<div className="text-right">
{textarea && (
<span>
{formData[textarea.name]?.length || 0}/500 characters
</span>
)}
</div>
<Button
{...getButtonProps(
{ text: buttonText, props: getButtonConfigProps() },

View File

@@ -21,6 +21,8 @@ type ProductCard = {
onFavorite?: () => void;
onProductClick?: () => void;
isFavorited?: boolean;
duration: string;
difficulty: string;
};
interface ProductCardItemProps {
@@ -40,6 +42,7 @@ const ProductCardItem = memo(({
cardNameClassName = "",
cardPriceClassName = "",
}: ProductCardItemProps) => {
const priceNumber = parseFloat(product.price.replace(/[^0-9.-]+/g, ""));
return (
<article
className={cls("card group relative h-full flex flex-col gap-4 cursor-pointer p-4 rounded-theme-capped", cardClassName)}
@@ -60,6 +63,9 @@ const ProductCardItem = memo(({
{product.name?.includes("Data Science") && (
<span className="inline-block px-3 py-1 text-sm font-medium rounded-full bg-primary-cta/10 text-primary-cta">Most Popular</span>
)}
{priceNumber < 14000 && (
<span className="inline-block px-3 py-1 text-sm font-medium rounded-full bg-warning-cta/10 text-warning-cta">Limited Seats</span>
)}
<h3 className={cls("text-base font-medium truncate leading-[1.3]", shouldUseLightText ? "text-background" : "text-foreground", cardNameClassName)}>
{product.name}
</h3>
@@ -76,6 +82,11 @@ const ProductCardItem = memo(({
<ArrowUpRight className="h-4/10 text-background transition-transform duration-300 group-hover:rotate-45" strokeWidth={1.5} />
</button>
</div>
<div className="absolute bottom-0 left-0 right-0 top-0 flex flex-col items-center justify-center opacity-0 transition-opacity group-hover:opacity-100">
<p className="text-sm text-center text-foreground/70">{product.duration}</p>
<p className="text-sm text-center text-foreground/70">{product.difficulty}</p>
</div>
</article>
);
});

View File

@@ -7,6 +7,7 @@ import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, GridVariant, CardAnimationTypeWith3D, TitleSegment } from "@/components/cardStack/types";
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
import { Star } from "lucide-react";
type TeamCardOneGridVariant = Exclude<GridVariant, "timeline">;
@@ -16,6 +17,7 @@ type TeamMember = {
role: string;
imageSrc: string;
imageAlt?: string;
rating: number;
};
interface TeamCardOneProps {
@@ -93,6 +95,14 @@ const TeamMemberCard = memo(({
{member.role}
</p>
</div>
<div className="flex items-center gap-1">
<Star className="w-4 h-4 text-yellow-400" />
<Star className="w-4 h-4 text-yellow-400" />
<Star className="w-4 h-4 text-yellow-400" />
<Star className="w-4 h-4" />
<Star className="w-4 h-4" />
<span className="text-sm text-foreground">{member.rating}/5</span>
</div>
</div>
</div>
</div>