mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-03-05 22:44:07 +00:00
23 lines
597 B
TypeScript
23 lines
597 B
TypeScript
import { Meta } from '~/components/common/meta'
|
|
import { PageLayout } from '~/components/layout/page'
|
|
import Benefits from '~/components/sections/homepage/benefits'
|
|
import Hero from '~/components/sections/homepage/hero'
|
|
import LatestNews from '~/components/sections/homepage/latest-news'
|
|
import WhatOthersSay from '~/components/sections/homepage/what-others-say'
|
|
|
|
import { Page } from './_app'
|
|
|
|
const HomePage: Page = () => {
|
|
return (
|
|
<PageLayout>
|
|
<Meta />
|
|
<Hero />
|
|
<Benefits />
|
|
<LatestNews />
|
|
<WhatOthersSay />
|
|
</PageLayout>
|
|
)
|
|
}
|
|
|
|
export default HomePage
|