import { classNames } from "@repo/config-tailwind/classNames" import type { TypographyProps } from "../../Design/Typography/Typography.tsx" import { Typography } from "../../Design/Typography/Typography.tsx" export * from "./RevealFade.tsx" export interface SectionProps extends React.ComponentPropsWithoutRef<"section"> { verticalSpacing?: boolean horizontalSpacing?: boolean } export const Section: React.FC = (props) => { const { className, verticalSpacing = false, horizontalSpacing = false, ...rest } = props return (
) } export interface SectionTitleProps extends TypographyProps<"h2"> {} export const SectionTitle: React.FC = (props) => { const { className, ...rest } = props return ( ) } export interface SectionDescriptionProps extends TypographyProps<"p"> {} export const SectionDescription: React.FC = ( props, ) => { const { className, ...rest } = props return ( ) } export interface SectionContentProps extends React.ComponentPropsWithoutRef<"div"> { shadowContainer?: boolean } export const SectionContent: React.FC = (props) => { const { className, shadowContainer = false, ...rest } = props return (
) }