commerce/app/page.tsx
2024-05-21 20:36:49 +05:00

12 lines
208 B
TypeScript

import { Carousel } from 'components/carousel';
import Footer from 'components/layout/footer';
export default async function HomePage() {
return (
<>
<Carousel />
<Footer />
</>
);
}