Skip to content

Commit

Permalink
Fix failling tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abel-castro committed Jan 3, 2025
1 parent 5c4e8f1 commit d081572
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 21 deletions.
5 changes: 3 additions & 2 deletions app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import PostSingle from '@/app/components/posts/post-single';
import activeDataProvider from '@/data-providers/active';
import type { Metadata } from 'next';
import { notFound } from 'next/navigation';

import activeDataProvider from '../../../data-providers/active';
import PostSingle from '../../components/posts/post-single';

export interface SinglePostPageProps {
params: { slug: string };
}
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ProjectCard from './components/project-card';
import Separator from './components/separator';
import bananaLifting from '/public/images/banana-lifting.jpg';

export default async function Home() {
export default function Home() {
return (
<>
<HomeHeader />
Expand Down
Loading

0 comments on commit d081572

Please sign in to comment.