turkmentv_front/app/(main)/auth/tarif/page.tsx

13 lines
329 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import TarifWindow from '@/components/auth/TarifWindow';
const Login = () => {
return (
<div className="flex flex-row justify-center items-center w-full h-full gap-[42px]">
<TarifWindow folder={10} days={10} price={10} />
<TarifWindow folder={1} days={5} price={1} />
</div>
);
};
export default Login;