mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:45:41 +00:00
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
import {metadata} from './page'
|
|
import {SimpleLayout} from '@/components/layouts/SimpleLayout'
|
|
|
|
export default function LoadingSkeleton() {
|
|
return (
|
|
<SimpleLayout heading="Dashboard."
|
|
description={metadata.description}
|
|
gradient="bg-gradient-to-r from-orange-300 to-rose-300">
|
|
|
|
</SimpleLayout>
|
|
)
|
|
} |