summaryrefslogtreecommitdiff
path: root/src/components/section.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/section.tsx')
-rw-r--r--src/components/section.tsx44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/components/section.tsx b/src/components/section.tsx
new file mode 100644
index 0000000..cb7c2c2
--- /dev/null
+++ b/src/components/section.tsx
@@ -0,0 +1,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>
+);