29 lines
681 B
TypeScript
29 lines
681 B
TypeScript
import mobile from 'is-mobile'
|
|
|
|
import ProjectsShowcaseCell from 'src/components/Project/ProjectsShowcaseCell'
|
|
|
|
const ProjectsPage = () => {
|
|
return (
|
|
<>
|
|
<div className="hero min-h-64">
|
|
<div className="hero-content">
|
|
<div className="max-w-md text-center">
|
|
<h1 className="text-5xl font-bold">Projects</h1>
|
|
<p className="mt-8">
|
|
{mobile({
|
|
tablet: true,
|
|
})
|
|
? 'Tap'
|
|
: 'Click'}{' '}
|
|
on a project for details
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ProjectsShowcaseCell />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default ProjectsPage
|