Error

Installation

Add the following Soul components

The error component uses the button and section-layout components. Make sure you have added them to your project.

Copy and paste the following code into your project

sections/error/index.tsx

import { Button } from '@/vibes/soul/primitives/button';import { SectionLayout } from '@/vibes/soul/sections/section-layout';export interface ErrorProps {  title?: string;  subtitle?: string;  ctaLabel?: string;  ctaAction?: () => void | Promise<void>;}/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { *    --error-font-family: var(--font-family-body); *    --error-title-font-family: var(--font-family-heading); *    --error-title: var(--foreground); *    --error-subtitle: var(--contrast-500); * } * ``` */export function Error({  title = 'Something went wrong!',  subtitle = 'Please try again or contact our support team for assistance.',  ctaLabel = 'Try again',  ctaAction,}: ErrorProps) {  return (    <SectionLayout containerSize="2xl">      <header className="font-[family-name:var(--button-font-family,var(--font-family-body))]">        <h1 className="mb-3 font-[family-name:var(--button-font-family,var(--font-family-heading))] text-3xl font-medium leading-none text-[var(--error-title,hsl(var(--errorr)))] @xl:text-4xl @4xl:text-5xl">          {title}        </h1>        <p className="text-lg text-[var(--error-subtitle,hsl(var(--contrast-500)))]">{subtitle}</p>      </header>      {ctaAction && (        <form action={ctaAction}>          <Button className="mt-8" size="large" type="submit" variant="primary">            {ctaLabel}          </Button>        </form>      )}    </SectionLayout>  );}

Usage

import { Error } from '@/vibes/soul/sections/error';function Usage() {  return (      <Error />  );}

API Reference

ErrorProps

PropTypeDefault
title
string
'Something went wrong!'
subtitle
string
'Please try again of contact our support team for assistance.'
ctaLabel
string
'Try again'
ctaAction
() => void | Promise<void>

CSS Variables

This component supports various CSS variables for theming. Here's a comprehensive list.

:root {  --error-font-family: var(--font-family-body);  --error-title-font-family: var(--font-family-heading);  --error-title: var(--foreground);  --error-subtitle: var(--contrast-500);}