Skip to content

Commit

Permalink
Merge pull request #78 from irsyadadl/laravel-11.x
Browse files Browse the repository at this point in the history
wip
  • Loading branch information
irsyadadl authored Jul 30, 2024
2 parents 85735b0 + 0fdc97f commit 6a63966
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions resources/js/pages/dashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
import { PagePropsData } from '@/types/index'
import { Head } from '@inertiajs/react'
import { Container } from 'components/container'
import { AppLayout } from 'layouts'
import { Card } from 'ui'

export default function Dashboard({ auth }: PagePropsData) {
return (
<>
<Head title="Dashboard" />

<div className="py-12">
<div className="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div className="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div className="p-6 text-gray-900">You're logged in!</div>
</div>
</div>
</div>
<Container className="py-12">
<Card className="p-6 max-w-md">Hello, {auth.user.name}!</Card>
</Container>
</>
)
}
Expand Down
Empty file removed resources/types/generated.d.ts
Empty file.

0 comments on commit 6a63966

Please sign in to comment.