first commit

This commit is contained in:
ANU8151
2021-01-07 21:37:31 +04:00
commit 80bf1ba1d1
39 changed files with 33333 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
export default class WelcomesController {
public async index({ inertia }: HttpContextContract) {
const Text = 'InertiaJS + Vue3 + Tailwind CSS + AdonisJS';
return inertia.render('welcome', { Text });
}
public async about({ inertia }: HttpContextContract) {
const Text = 'This is About Page';
return inertia.render('About/About', { Text });
}
}