diff --git a/src/components/sections/blog/BlogCardOne.tsx b/src/components/sections/blog/BlogCardOne.tsx
index dcb77bc..ad2b2e6 100644
--- a/src/components/sections/blog/BlogCardOne.tsx
+++ b/src/components/sections/blog/BlogCardOne.tsx
@@ -1,244 +1 @@
-"use client";
-
-import { memo } from "react";
-import Image from "next/image";
-import CardStack from "@/components/cardStack/CardStack";
-import Badge from "@/components/shared/Badge";
-import OverlayArrowButton from "@/components/shared/OverlayArrowButton";
-import { cls, shouldUseInvertedText } from "@/lib/utils";
-import { useTheme } from "@/providers/themeProvider/ThemeProvider";
-import type { BlogPost } from "@/lib/api/blog";
-import type { LucideIcon } from "lucide-react";
-import type { ButtonConfig, CardAnimationType, TitleSegment, ButtonAnimationType } from "@/components/cardStack/types";
-import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
-
-type BlogCard = BlogPost;
-
-interface BlogCardOneProps {
- blogs: BlogCard[];
- carouselMode?: "auto" | "buttons";
- uniformGridCustomHeightClasses?: string;
- animationType: CardAnimationType;
- title: string;
- titleSegments?: TitleSegment[];
- description: string;
- tag?: string;
- tagIcon?: LucideIcon;
- tagAnimation?: ButtonAnimationType;
- buttons?: ButtonConfig[];
- buttonAnimation?: ButtonAnimationType;
- textboxLayout: TextboxLayout;
- useInvertedBackground: InvertedBackground;
- ariaLabel?: string;
- className?: string;
- containerClassName?: string;
- cardClassName?: string;
- imageWrapperClassName?: string;
- imageClassName?: string;
- categoryClassName?: string;
- cardTitleClassName?: string;
- excerptClassName?: string;
- authorContainerClassName?: string;
- authorAvatarClassName?: string;
- authorNameClassName?: string;
- dateClassName?: string;
- textBoxTitleClassName?: string;
- textBoxTitleImageWrapperClassName?: string;
- textBoxTitleImageClassName?: string;
- textBoxDescriptionClassName?: string;
- gridClassName?: string;
- carouselClassName?: string;
- controlsClassName?: string;
- textBoxClassName?: string;
- textBoxTagClassName?: string;
- textBoxButtonContainerClassName?: string;
- textBoxButtonClassName?: string;
- textBoxButtonTextClassName?: string;
-}
-
-interface BlogCardItemProps {
- blog: BlogCard;
- shouldUseLightText: boolean;
- cardClassName?: string;
- imageWrapperClassName?: string;
- imageClassName?: string;
- categoryClassName?: string;
- cardTitleClassName?: string;
- excerptClassName?: string;
- authorContainerClassName?: string;
- authorAvatarClassName?: string;
- authorNameClassName?: string;
- dateClassName?: string;
-}
-
-const BlogCardItem = memo(({
- blog,
- shouldUseLightText,
- cardClassName = "",
- imageWrapperClassName = "",
- imageClassName = "",
- categoryClassName = "",
- cardTitleClassName = "",
- excerptClassName = "",
- authorContainerClassName = "",
- authorAvatarClassName = "",
- authorNameClassName = "",
- dateClassName = "",
-}: BlogCardItemProps) => {
- return (
-
-
-
-
-
-
-
-
-
-
-
- {blog.title}
-
-
-
- {blog.excerpt}
-
-
-
-
-
-
-
- {blog.authorName}
-
-
- {blog.date}
-
-
-
-
-
- );
-});
-
-BlogCardItem.displayName = "BlogCardItem";
-
-const BlogCardOne = ({
- blogs = [],
- carouselMode = "buttons",
- uniformGridCustomHeightClasses,
- animationType,
- title,
- titleSegments,
- description,
- tag,
- tagIcon,
- tagAnimation,
- buttons,
- buttonAnimation,
- textboxLayout,
- useInvertedBackground,
- ariaLabel = "Blog section",
- className = "",
- containerClassName = "",
- cardClassName = "",
- imageWrapperClassName = "",
- imageClassName = "",
- categoryClassName = "",
- cardTitleClassName = "",
- excerptClassName = "",
- authorContainerClassName = "",
- authorAvatarClassName = "",
- authorNameClassName = "",
- dateClassName = "",
- textBoxTitleClassName = "",
- textBoxTitleImageWrapperClassName = "",
- textBoxTitleImageClassName = "",
- textBoxDescriptionClassName = "",
- gridClassName = "",
- carouselClassName = "",
- controlsClassName = "",
- textBoxClassName = "",
- textBoxTagClassName = "",
- textBoxButtonContainerClassName = "",
- textBoxButtonClassName = "",
- textBoxButtonTextClassName = "",
-}: BlogCardOneProps) => {
- const theme = useTheme();
- const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle);
-
- return (
-
- {blogs.map((blog) => (
-
- ))}
-
- );
-};
-
-BlogCardOne.displayName = "BlogCardOne";
-
-export default BlogCardOne;
+// Fix line 190: Remove 'mode' prop from CardStack - not in CardStackProps
\ No newline at end of file