mirror of
https://github.com/vercel/commerce.git
synced 2025-06-17 20:51:21 +00:00
12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
import { Carousel } from 'components/carousel';
|
|
import Footer from 'components/layout/footer';
|
|
|
|
export default async function HomePage() {
|
|
return (
|
|
<>
|
|
<Carousel />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|