サポート
Relume のすべてのサポートは Slack を通じて提供されます。支援を受けるには、 私たちの Slack コミュニティに参加してください Webflowプロジェクトのプレビューリンクと問題の説明を当社の専門家に送信してください。問題を確認し、解決策をご案内します。

アカウント関連の問題については、お問い合わせください support@relume.io
We're performing some maintenance. If you're experiencing any issues please reach out via Slack
Go to Slack
Your payment method has expired. Update your billing details to regain access to premium features.
Manage Billing
Now open!
Vote on new
Relume components
Vote on what components you'd like to see added to our roadmap next month.
Get started

Stats 8

<section id="relume" class="px-[5%] py-16 md:py-24 lg:py-28">
  <div class="container flex flex-col items-start">
    <div class="rb-12 mb-12 w-full max-w-lg md:mb-18 lg:mb-20">
      <h3 class="text-4xl font-bold leading-[1.2] md:text-5xl lg:text-6xl">
        Long heading is what you see here in this feature section
      </h3>
    </div>
    <div
      class="grid w-full grid-cols-1 items-start justify-start gap-y-8 md:grid-cols-3 md:gap-x-8 lg:gap-x-12 lg:gap-y-16"
    >
      <div class="w-full border-l-2 border-border-primary pl-8">
        <p class="mb-2 text-10xl font-bold leading-[1.3] md:text-[4rem] lg:text-[5rem]">30%</p>
        <h3 class="text-md font-bold leading-[1.4] md:text-xl">Short heading goes here</h3>
      </div>
      <div class="w-full border-l-2 border-border-primary pl-8">
        <p class="mb-2 text-10xl font-bold leading-[1.3] md:text-[4rem] lg:text-[5rem]">30%</p>
        <h3 class="text-md font-bold leading-[1.4] md:text-xl">Short heading goes here</h3>
      </div>
      <div class="w-full border-l-2 border-border-primary pl-8">
        <p class="mb-2 text-10xl font-bold leading-[1.3] md:text-[4rem] lg:text-[5rem]">30%</p>
        <h3 class="text-md font-bold leading-[1.4] md:text-xl">Short heading goes here</h3>
      </div>
    </div>
  </div>
</section>
type StatsProps = {
  percentage: string;
  heading: string;
};

type Props = {
  heading: string;
  stats: StatsProps[];
};

export type Stats8Props = React.ComponentPropsWithoutRef<"section"> & Partial<Props>;

export const Stats8 = (props: Stats8Props) => {
  const { heading, stats } = {
    ...Stats8Defaults,
    ...props,
  };
  return (
    <section id="relume" className="px-[5%] py-16 md:py-24 lg:py-28">
      <div className="container flex flex-col items-start">
        <div className="rb-12 mb-12 w-full max-w-lg md:mb-18 lg:mb-20">
          <h3 className="text-4xl font-bold leading-[1.2] md:text-5xl lg:text-6xl">{heading}</h3>
        </div>
        <div className="grid w-full grid-cols-1 items-start justify-start gap-y-8 md:grid-cols-3 md:gap-x-8 lg:gap-x-12 lg:gap-y-16">
          {stats.map((stat, index) => (
            <div key={index} className="w-full border-l-2 border-border-primary pl-8">
              <p className="mb-2 text-10xl font-bold leading-[1.3] md:text-[4rem] lg:text-[5rem]">
                {stat.percentage}
              </p>
              <h3 className="text-md font-bold leading-[1.4] md:text-xl">{stat.heading}</h3>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
};

export const Stats8Defaults: Props = {
  heading: "Long heading is what you see here in this feature section",
  stats: [
    { percentage: "30%", heading: "Short heading goes here" },
    { percentage: "30%", heading: "Short heading goes here" },
    { percentage: "30%", heading: "Short heading goes here" },
  ],
};
You need to be logged in to view the code.
Get the code
Upgrade your plan to view the code.
Upgrade
Details
Last updated
March 12, 2025
React version
18
Tailwind version
3.4
Need help?
For installation guidelines and API information, visit the docs.
Examples
No items found.