summaryrefslogtreecommitdiff
path: root/src/components/section.tsx
diff options
context:
space:
mode:
authorBertrand Yuan <bert.yuan@outlook.com>2025-12-15 23:48:10 +0800
committerBertrand Yuan <bert.yuan@outlook.com>2025-12-15 23:48:10 +0800
commit5b7ccf0b671e2999b62befc729a3e517a0433728 (patch)
tree8bf476dc7c75914c221042546840dc76267366df /src/components/section.tsx
initial commit -- the front-end prototype
The initial code is base on Anirudh's work. More to see at: https://github.com/techwithanirudh/shadcn-blog Therefore, the code in this commit is under MIT license.
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>
+);