mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 06:56:59 +00:00
27 lines
664 B
TypeScript
27 lines
664 B
TypeScript
import {
|
|
chakra,
|
|
Heading,
|
|
Text,
|
|
Divider,
|
|
Grid,
|
|
GridItem,
|
|
} from '@chakra-ui/react'
|
|
import { Layout } from '@components/common'
|
|
import AboutSlider from '@components/common/About/AboutSlider'
|
|
import MessageMap from '@components/common/About/TestimonialCard'
|
|
import WithSpeechBubbles from '@components/common/About/TestimonialCard'
|
|
import TestimonialCard from '@components/common/About/TestimonialCard'
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
<div className="mx-8 sm:mx-auto py-20 flex flex-col items-center justify-center fit">
|
|
<AboutSlider></AboutSlider>
|
|
</div>
|
|
<MessageMap />
|
|
</>
|
|
)
|
|
}
|
|
|
|
About.Layout = Layout
|