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

12 lines
239 B
TypeScript

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