12 lines
248 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|