AniX/app/page.js

9 lines
170 B
JavaScript

export const metadata = {
title: "AniX | Домашняя",
};
import { IndexPage } from "./pages/Index";
export default function Index() {
return <IndexPage />;
}