summaryrefslogtreecommitdiff
path: root/src/components/section.tsx
blob: cb7c2c2f38765f67b029a237336f54b8e1de4c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { cn } from '@/lib/utils';
import { PlusIcon } from 'lucide-react';
import type { HTMLAttributes } from 'react';

type SectionProps = {
  sectionClassName?: string;
} & HTMLAttributes<HTMLDivElement>;

const Cross = () => (
  <div className='relative h-6 w-6'>
    <div className='absolute left-3 h-6 w-px bg-background' />
    <div className='absolute top-3 h-px w-6 bg-background' />

    <div className='-translate-x-1/2 -translate-y-1/2 absolute top-1/2 left-1/2'>
      <PlusIcon size={20} className='text-border/70 dark:text-border' />
    </div>
  </div>
);

export const Section = ({
  children,
  sectionClassName,
  className,
  ...props
}: SectionProps) => (
  <section className={sectionClassName} {...props}>
    <div className='container relative mx-auto'>
      <div
        className={cn(
          'border-border/70 border-dashed sm:border-x dark:border-border',
          className,
        )}
      >
        {children}
      </div>
      <div className='-bottom-3 -left-3 absolute z-10 hidden h-6 sm:block'>
        <Cross />
      </div>
      <div className='-bottom-3 -right-3 -translate-x-px absolute z-10 hidden h-6 sm:block'>
        <Cross />
      </div>
    </div>
  </section>
);