mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-10 18:31:10 -05:00
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
import { GlobalMap } from '@/components/main/global-map';
|
|
import { Hero } from '@/components/main/hero';
|
|
import { ProductShowcase } from '@/components/main/product-showcase';
|
|
import { Stats } from '@/components/main/stats';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className='container space-y-16'>
|
|
<Hero />
|
|
<Stats />
|
|
<ProductShowcase />
|
|
<GlobalMap />
|
|
</main>
|
|
);
|
|
}
|