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