first commit

This commit is contained in:
2026-01-23 17:28:21 +07:00
commit 29ff8992b9
331 changed files with 30545 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { PageProps } from '@/types';
import { Head } from '@inertiajs/react';
import GuestLayout from '@/Layouts/GuestLayout';
import { Hero } from '@/Components/Landing/Hero';
export default function Welcome({ auth }: PageProps) {
return (
<GuestLayout>
<Head title="Ecosystem Belajar Bahasa Jepang Modern" />
<Hero />
</GuestLayout>
);
}