| 1234567891011121314151617 |
- export function SectionDivider() {
- return (
- <div className="hidden lg:block w-full opacity-40">
- <svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg">
- <line
- x1="0"
- y1="0.5"
- x2="100%"
- y2="0.5"
- stroke="rgba(255,255,255,0.4)"
- strokeWidth="1"
- strokeDasharray="12 12"
- />
- </svg>
- </div>
- );
- }
|