mirror of
https://github.com/vercel/commerce.git
synced 2025-06-16 04:11:22 +00:00
18 lines
444 B
TypeScript
18 lines
444 B
TypeScript
import ContactUs from 'components/contact-us';
|
|
import Quicklinks from 'components/home/quicklinks';
|
|
import LatestNews from 'components/latest-news';
|
|
import Hero from 'components/layout/hero/hero-1';
|
|
import ScienceInnovation from 'components/science-innovation';
|
|
|
|
export default async function HomePage() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Quicklinks />
|
|
<LatestNews />
|
|
<ScienceInnovation />
|
|
<ContactUs />
|
|
</>
|
|
);
|
|
}
|