Consolidate component folders

This commit is contained in:
adilallo
2025-09-04 21:13:18 -06:00
parent 3a4b2d44c2
commit 3cca30ae28
5 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import ContentThumbnailTemplate from "../../components/ContentThumbnailTemplate";
import ContentThumbnailTemplate from "../components/ContentThumbnailTemplate";
// Mock blog post data for testing
const mockPost1 = {
+1 -1
View File
@@ -1,6 +1,6 @@
import { describe, it, expect, vi } from "vitest";
import { render, screen } from "@testing-library/react";
import ContentThumbnailTemplate from "../../components/ContentThumbnailTemplate";
import ContentThumbnailTemplate from "../../app/components/ContentThumbnailTemplate";
// Mock Next.js components
vi.mock("next/link", () => {