diff --git a/src/app/page.tsx b/src/app/page.tsx index a749355..577af8d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import FaqDouble from "@/components/sections/faq/FaqDouble"; import TimelineProcessFlow from "@/components/cardStack/layouts/timelines/TimelineProcessFlow"; import BlogCardOne from "@/components/sections/blog/BlogCardOne"; import HeroLogo from "@/components/sections/hero/HeroLogo"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; export default function LandingPage() { return ( @@ -210,17 +211,16 @@ export default function LandingPage() {
-
diff --git a/src/components/sections/blog/BlogCardOne.tsx b/src/components/sections/blog/BlogCardOne.tsx index 39c4e28..778348a 100644 --- a/src/components/sections/blog/BlogCardOne.tsx +++ b/src/components/sections/blog/BlogCardOne.tsx @@ -8,6 +8,7 @@ import OverlayArrowButton from "@/components/shared/OverlayArrowButton"; import { cls, shouldUseInvertedText } from "@/lib/utils"; import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import type { LucideIcon } from "lucide-react"; +import { LinkedIn } from "lucide-react"; import type { ButtonConfig, CardAnimationType, TitleSegment } from "@/components/cardStack/types"; import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants"; @@ -21,6 +22,7 @@ type BlogCard = { authorName: string; authorAvatar: string; date: string; + linkedinUrl?: string; onBlogClick?: () => void; }; @@ -136,6 +138,11 @@ const BlogCardItem = memo(({

{blog.authorName} + {blog.linkedinUrl && ( + + + + )}

{blog.date} @@ -244,4 +251,4 @@ const BlogCardOne = ({ BlogCardOne.displayName = "BlogCardOne"; -export default BlogCardOne; +export default BlogCardOne; \ No newline at end of file