Featured Blog Post Carousel
Installation
Add the following Soul components
The featured-blog-post-carousel component uses the section-layout, blog-post-card, streamable, blog-post-carousel and animated-link components. Make sure you have added them to your project.
Copy and paste the following code into your project
sections/featured-blog-post-carousel/index.tsx
import { Streamable } from '@/vibes/soul/lib/streamable';import { AnimatedLink } from '@/vibes/soul/primitives/animated-link';import { type BlogPost } from '@/vibes/soul/primitives/blog-post-card';import { BlogPostCarousel } from '@/vibes/soul/sections/blog-post-carousel';import { SectionLayout } from '@/vibes/soul/sections/section-layout';interface Link { label: string; href: string;}export interface FeaturedBlogPostCarouselProps { title: string; cta?: Link; blogPosts: Streamable<BlogPost[]>; scrollbarLabel?: string; previousLabel?: string; nextLabel?: string;}/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { * --featured-blog-post-carousel-font-family: var(--font-family-body); * --featured-blog-post-carousel-text: hsl(var(--foreground)); * } * ``` */export function FeaturedBlogPostCarousel({ cta, title, blogPosts, scrollbarLabel, previousLabel, nextLabel,}: FeaturedBlogPostCarouselProps) { return ( <SectionLayout containerSize="2xl"> <div className="mb-6 flex w-full flex-row flex-wrap justify-between gap-x-8 px-1.5 text-[var(--featured-blog-post-carousel-text,hsl(var(--foreground)))] @4xl:mb-8 @4xl:items-end"> <div className="flex-1"> <h2 className="font-[family-name:var(--featured-blog-post-carousel-font-family,var(--font-family-heading))] text-2xl font-medium leading-none @xl:text-3xl @4xl:text-4xl"> {title} </h2> </div> {cta != null && cta.href !== '' && cta.label !== '' && ( <AnimatedLink className="mr-3" href={cta.href}> {cta.label} </AnimatedLink> )} </div> <div className="group/blog-post-carousel"> <BlogPostCarousel blogPosts={blogPosts} nextLabel={nextLabel} previousLabel={previousLabel} scrollbarLabel={scrollbarLabel} /> </div> </SectionLayout> );}
Usage
import { FeaturedBlogPostCarousel } from '@/vibes/soul/sections/featured-blog-post-carousel';function Usage() { return ( <FeaturedBlogPostCarousel blogPosts={posts} cta={{ label: 'View all', href: '#' }} title="Plant Life" /> );}const posts = [ { id: '5', title: 'A Guide to Low-Light Houseplants', content: 'Not all plants need bright sunlight to thrive. This guide highlights the best low-light houseplants, perfect for those darker corners of your home or office that need a touch of green.', image: { src: 'https://rstr.in/monogram/vibes/T7CeSkvi11I/OrJN5KVj7I1', alt: 'Low-Light Houseplants', }, date: '2024-07-20', href: '#', author: 'Author Name', },];
API Reference
FeaturedBlogPostCarouselProps
Prop | Type | Default |
---|---|---|
className | string | |
title* | string | |
cta | Link | |
blogPosts* | ||
scrollbarLabel | string | |
previousLabel | string | |
nextLabel | string |
Link
Prop | Type | Default |
---|---|---|
href* | string | |
label* | string |
BlogPost
Prop | Type | Default |
---|---|---|
title* | string | |
author | string | null | |
content* | string | |
date* | string | |
image | {src: string; alt: string; } | null | |
href* | string |
CSS Variables
This component supports various CSS variables for theming. Here's a comprehensive list.
:root { --featured-blog-post-carousel-font-family: var(--font-family-body); --featured-blog-post-carousel-text: hsl(var(--foreground));}