blob: 207f265dceecc473c5411a4ee708c9080b0207c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import PageContent from '@/lib/content/components/PageContent'
export default function AboutUs() {
return (
<BasicLayout>
<Seo title='Tentang Indoteknik.com' />
<div className='container mx-auto p-4 md:p-0 my-0 md:my-10'>
<PageContent path='/about-us' />
</div>
</BasicLayout>
)
}
|