'use client'
import { usePathname } from 'next/navigation';
import React from 'react'
export default function SatkerPage() {
const pathname = usePathname();
console.log(pathname)
return (
<div className='text-black'>
{pathname}
</div>
)
}