Files
2025-05-18 01:18:35 +03:30

11 lines
200 B
JavaScript

import HomePage from "@/components/home";
import Layout from "@/components/layout/StLayout";
export default function Home() {
return (
<Layout name="/">
<HomePage />
</Layout>
);
}