mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 13:32:07 +07:00
first commit
This commit is contained in:
13
resources/js/Pages/Welcome.tsx
Normal file
13
resources/js/Pages/Welcome.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user