mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-08-01 02:42:05 -04:00
26 lines
686 B
TypeScript
26 lines
686 B
TypeScript
'use client'
|
|
|
|
import WhackABug from 'web/components/game/whack-a-bug'
|
|
import {PageBase} from 'web/components/page-base'
|
|
import {SEO} from 'web/components/SEO'
|
|
import {useT} from 'web/lib/locale'
|
|
|
|
export default function WhackABugPage() {
|
|
const t = useT()
|
|
return (
|
|
<PageBase trackPageView={'whack-a-bug'} className="relative p-2 sm:pt-0">
|
|
<SEO
|
|
title={t('game.whackabug.seo_title', 'Whack-A-Bug')}
|
|
description={t(
|
|
'game.whackabug.seo_description',
|
|
'Blame the bugs for the error - a fun game',
|
|
)}
|
|
url="/whack-a-bug"
|
|
/>
|
|
<div className="max-w-lg mx-auto">
|
|
<WhackABug />
|
|
</div>
|
|
</PageBase>
|
|
)
|
|
}
|