diff --git a/src/components/ui/separator.jsx b/src/components/ui/separator.jsx new file mode 100644 index 0000000..b9888ed --- /dev/null +++ b/src/components/ui/separator.jsx @@ -0,0 +1,19 @@ +import React from 'react'; + +/** + * Separator component for dividing sections in the UI. + * Renders a horizontal line with optional styling for light/dark mode. + */ +export function Separator({ className = '' }) { + return ( +
- Version 1.0.0 • Built with ❤️ for habit builders + Version 1.1.0 • Built by Mihajlo Ciric with ❤️
+- Track your habits with a beautiful GitHub-style contribution grid. - Build streaks, visualize progress, and commit to yourself daily. + This project is open-source and available on GitHub and mirrored on git.mihajlociric.com. If you enjoy using HabitGrid, please consider starring the repository and sharing it with others! + If you encounter any issues or have suggestions, feel free to open an issue or contribute.
+ {/* GitHub Icon Button at the bottom */} + ); };