Skip to content

Commit

Permalink
feat: add video support
Browse files Browse the repository at this point in the history
  • Loading branch information
danilaplee committed Jan 23, 2025
1 parent 7668d83 commit 3a7d8d8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pexels-grid/src/app/p/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import PhotoPage from "@/app/@modal/p/[id]/page";
export default async function VideoPage({
params,
}: {
params: Promise<{ id: string }>;
}) {
return <PhotoPage params={params} />;
}

0 comments on commit 3a7d8d8

Please sign in to comment.