Content Page #19

Merged
an.di merged 48 commits from adilallo/feature/Blog into main 2025-09-18 15:44:46 +00:00
3 changed files with 10 additions and 10 deletions
Showing only changes of commit a867fc45d6 - Show all commits
+2 -2
View File
@@ -10,7 +10,7 @@ export default function RelatedArticles({
}) {
// Filter out the current post from related posts
const filteredPosts = relatedPosts.filter(
(post) => post.slug !== currentPostSlug
(post) => post.slug !== currentPostSlug,
);
const [currentIndex, setCurrentIndex] = useState(0);
@@ -97,7 +97,7 @@ export default function RelatedArticles({
const handleMouseUp = () => {
document.removeEventListener(
"mousemove",
handleMouseMove
handleMouseMove,
);
document.removeEventListener("mouseup", handleMouseUp);
};
+2 -2
View File
@@ -104,8 +104,8 @@ export default function LearnPage() {
More Content Coming Soon
</h2>
<p className="text-[var(--color-content-default-secondary)]">
We're working on adding more educational content to help you build
better communities. Check back soon for new articles and
We&apos;re working on adding more educational content to help you
build better communities. Check back soon for new articles and
resources.
</p>
</section>