Not Found

Installation

Add the following Soul components

The not-found component uses the section-layout component. Make sure you have added it to your project.

Copy and paste the following code into your project

sections/not-found/index.tsx

import { SectionLayout } from '@/vibes/soul/sections/section-layout';export interface NotFoundProps {  title?: string;  subtitle?: string;}/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { *   --not-found-font-family: var(--font-family-body); *   --not-found-title-font-family: var(--font-family-heading); *   --not-found-title: hsl(var(--foreground)); *   --not-found-subtitle: hsl(var(--contrast-500)); * } * ``` */export function NotFound({  title = 'Not found',  subtitle = "Take a look around if you're lost.",}: NotFoundProps) {  return (    <SectionLayout containerSize="2xl">      <header className="font-[family-name:var(--not-found-font-family,var(--font-family-body))]">        <h1 className="mb-3 font-[family-name:var(--not-found-title-font-family,var(--font-family-heading))] text-3xl font-medium leading-none text-[var(--not-found-title,hsl(var(--foreground)))] @xl:text-4xl @4xl:text-5xl">          {title}        </h1>        <p className="text-lg text-[var(--not-found-subtitle,hsl(var(--contrast-500)))]">          {subtitle}        </p>      </header>    </SectionLayout>  );}

Usage

import { NotFound } from '@/vibes/soul/sections/not-found';function Usage() {  return (      <NotFound/>  );}

API Reference

NotFoundProps

PropTypeDefault
title
string
subtitle
string

CSS Variables

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

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