wisatin/src/pages/explore.tsx
2025-12-06 08:37:34 +07:00

12 lines
248 B
TypeScript

import { SEO } from '@/Components/Atoms/SEO';
import Explore from '@/LegacyPages/Public/Explore';
export default function Page() {
return (
<>
<SEO title="Wisatin" description="Generated by Wisatin" />
<Explore />
</>
);
}