create separate component for SectionDivider

This commit is contained in:
SwagMuffin88
2025-08-15 10:51:35 +03:00
parent 505b6a8d34
commit f0be2711ce

View File

@@ -0,0 +1,7 @@
import React from 'react';
export default function SectionDivider() {
return (
<hr className="border-t-[3px] border-[#1F5673]" />
);
};