Initial commit
This commit is contained in:
185
src/components/sections/hero/HeroChatPromptFeatures.tsx
Normal file
185
src/components/sections/hero/HeroChatPromptFeatures.tsx
Normal file
@@ -0,0 +1,185 @@
|
||||
"use client";
|
||||
|
||||
import TextBox from "@/components/Textbox";
|
||||
import { cls } from "@/lib/utils";
|
||||
import { ArrowUp } from "lucide-react";
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
|
||||
interface FeatureTag {
|
||||
id: string;
|
||||
label: string;
|
||||
icon: LucideIcon;
|
||||
}
|
||||
|
||||
interface FeatureHighlight {
|
||||
id: string;
|
||||
icon: LucideIcon;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
}
|
||||
|
||||
interface HeroChatPromptFeaturesProps {
|
||||
title: string;
|
||||
description: string;
|
||||
tag?: string;
|
||||
tagIcon?: LucideIcon;
|
||||
promptText?: string;
|
||||
featureTags: FeatureTag[];
|
||||
featureHighlights: FeatureHighlight[];
|
||||
ariaLabel?: string;
|
||||
className?: string;
|
||||
containerClassName?: string;
|
||||
textBoxClassName?: string;
|
||||
titleClassName?: string;
|
||||
descriptionClassName?: string;
|
||||
tagClassName?: string;
|
||||
promptContainerClassName?: string;
|
||||
promptTextClassName?: string;
|
||||
promptButtonClassName?: string;
|
||||
featureTagsClassName?: string;
|
||||
featureTagClassName?: string;
|
||||
featureHighlightsClassName?: string;
|
||||
featureHighlightClassName?: string;
|
||||
featureHighlightIconClassName?: string;
|
||||
featureHighlightTitleClassName?: string;
|
||||
featureHighlightSubtitleClassName?: string;
|
||||
}
|
||||
|
||||
const HeroChatPromptFeatures = ({
|
||||
title,
|
||||
description,
|
||||
tag,
|
||||
tagIcon,
|
||||
promptText = "Ask me anything...",
|
||||
featureTags,
|
||||
featureHighlights,
|
||||
ariaLabel = "Hero section",
|
||||
className = "",
|
||||
containerClassName = "",
|
||||
textBoxClassName = "",
|
||||
titleClassName = "",
|
||||
descriptionClassName = "",
|
||||
tagClassName = "",
|
||||
promptContainerClassName = "",
|
||||
promptTextClassName = "",
|
||||
promptButtonClassName = "",
|
||||
featureTagsClassName = "",
|
||||
featureTagClassName = "",
|
||||
featureHighlightsClassName = "",
|
||||
featureHighlightClassName = "",
|
||||
featureHighlightIconClassName = "",
|
||||
featureHighlightTitleClassName = "",
|
||||
featureHighlightSubtitleClassName = "",
|
||||
}: HeroChatPromptFeaturesProps) => {
|
||||
|
||||
return (
|
||||
<section
|
||||
aria-label={ariaLabel}
|
||||
className={cls("relative pt-hero-page-padding md:pt-0 w-full h-fit md:h-svh flex items-center justify-center", className)}
|
||||
>
|
||||
<div className={cls("w-content-width mx-auto flex flex-col gap-8", containerClassName)}>
|
||||
<TextBox
|
||||
title={title}
|
||||
description={description}
|
||||
tag={tag}
|
||||
tagIcon={tagIcon}
|
||||
className={cls("flex flex-col gap-3 md:gap-1", textBoxClassName)}
|
||||
titleClassName={cls("text-6xl font-medium text-balance", titleClassName)}
|
||||
descriptionClassName={cls("text-lg leading-[1.2]", descriptionClassName)}
|
||||
tagClassName={cls("px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)}
|
||||
center={true}
|
||||
/>
|
||||
|
||||
<div className={cls(
|
||||
"w-full md:w-50 mx-auto flex flex-wrap items-center justify-center gap-3",
|
||||
featureTagsClassName
|
||||
)}>
|
||||
{featureTags.map((featureTag) => {
|
||||
const FeatureIcon = featureTag.icon;
|
||||
return (
|
||||
<div
|
||||
key={featureTag.id}
|
||||
className={cls(
|
||||
"px-4 py-2 text-sm card rounded-theme flex items-center gap-2",
|
||||
featureTagClassName
|
||||
)}
|
||||
>
|
||||
<FeatureIcon className="relative z-1 h-[1em] w-auto" />
|
||||
<span className="relative z-1" >{featureTag.label}</span>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
<div className={cls(
|
||||
"w-full md:w-50 mx-auto card p-6 rounded-theme-capped flex flex-col gap-10",
|
||||
promptContainerClassName
|
||||
)}>
|
||||
<p className={cls(
|
||||
"relative z-1 flex-1 text-lg text-foreground truncate",
|
||||
promptTextClassName
|
||||
)}>
|
||||
{promptText}
|
||||
</p>
|
||||
<div className="relative z-1 w-full flex justify-end" >
|
||||
<div
|
||||
className={cls(
|
||||
"h-8 w-[var(--height-8)] rounded-theme primary-button flex items-center justify-center",
|
||||
promptButtonClassName
|
||||
)}
|
||||
>
|
||||
<ArrowUp className="w-1/2 h-1/2 text-background" strokeWidth={1.5} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="relative h-px w-full md:w-50 mx-auto bg-accent" />
|
||||
|
||||
<div className={cls(
|
||||
"w-full md:w-50 mx-auto grid grid-cols-1 gap-6",
|
||||
featureHighlights.length === 2 && "md:grid-cols-2",
|
||||
featureHighlights.length === 3 && "md:grid-cols-3",
|
||||
featureHighlights.length === 4 && "md:grid-cols-2",
|
||||
featureHighlightsClassName
|
||||
)}>
|
||||
{featureHighlights.map((highlight) => {
|
||||
const HighlightIcon = highlight.icon;
|
||||
return (
|
||||
<div
|
||||
key={highlight.id}
|
||||
className={cls(
|
||||
"relative w-full min-w-0 flex items-center gap-4 p-3 card rounded-theme-capped",
|
||||
featureHighlightClassName
|
||||
)}
|
||||
>
|
||||
<div className={cls(
|
||||
"relative shrink-0 h-10 w-auto aspect-square rounded-theme card flex items-center justify-center",
|
||||
featureHighlightIconClassName
|
||||
)}>
|
||||
<HighlightIcon className="relative z-1 h-45/100 w-45/100 text-foreground" strokeWidth={1.5} />
|
||||
</div>
|
||||
<div className="relative w-full min-w-0 flex flex-col">
|
||||
<h3 className={cls(
|
||||
"relative w-full z-1 text-base font-medium text-foreground leading-tight truncate",
|
||||
featureHighlightTitleClassName
|
||||
)}>
|
||||
{highlight.title}
|
||||
</h3>
|
||||
<p className={cls(
|
||||
"relative w-full z-1 text-sm text-foreground/70 leading-tight truncate",
|
||||
featureHighlightSubtitleClassName
|
||||
)}>
|
||||
{highlight.subtitle}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
HeroChatPromptFeatures.displayName = "HeroChatPromptFeatures";
|
||||
|
||||
export default HeroChatPromptFeatures;
|
||||
Reference in New Issue
Block a user