page templates

This commit is contained in:
2025-04-08 04:11:37 +02:00
parent 87832f46a3
commit d4f3912a95
3 changed files with 36 additions and 0 deletions

12
src/app/blog/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
'use client'
import { usePathname } from "next/navigation"
export default function Page() {
const pathName = usePathname()
return (
<div>
{pathName}
</div>
)
}