48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
 | 
						|
import { Faqs } from '@/components/Faqs'
 | 
						|
import { UseCases } from '@/components/UseCases'
 | 
						|
import { Steps } from '@/components/Steps'
 | 
						|
import { HomeHero } from '@/components/HomeHero'
 | 
						|
import { HomeAbout } from '@/components/HomeAbout'
 | 
						|
import { ClickableGallery } from '@/components/ClickableGallery'
 | 
						|
import { StackSectionPreview } from '@/components/StackSection'
 | 
						|
import { Companies } from '@/components/Companies'
 | 
						|
import { CallToAction } from '@/components/CallToAction'
 | 
						|
import { ScrollDown } from '@/components/ui/ScrollDown'
 | 
						|
import { ScrollUp } from '@/components/ui/ScrollUp'
 | 
						|
import { GridStats } from '@/components/GridStats'
 | 
						|
import { WorldMap } from '@/components/WorldMap'
 | 
						|
import { GetStarted } from '@/components/GetStarted'
 | 
						|
import { BentoReviews } from '@/components/BentoReviews'
 | 
						|
 | 
						|
export default function Home() {
 | 
						|
  return (
 | 
						|
    <>
 | 
						|
      <section id="home-hero">
 | 
						|
        <HomeHero />
 | 
						|
      </section>
 | 
						|
      <section id="network">
 | 
						|
        <WorldMap />
 | 
						|
      </section>
 | 
						|
      <section id="technologies">
 | 
						|
        <StackSectionPreview />
 | 
						|
      </section>
 | 
						|
      <section id="how-it-works">
 | 
						|
        <Steps />
 | 
						|
      </section>
 | 
						|
      <section id="llms">
 | 
						|
        <Companies />
 | 
						|
      </section>
 | 
						|
      <section id="clickable-gallery">
 | 
						|
        <ClickableGallery />
 | 
						|
      </section>
 | 
						|
      <section id="bento-reviews">
 | 
						|
        <BentoReviews />
 | 
						|
      </section>
 | 
						|
      <section id="get-started">
 | 
						|
        <CallToAction />
 | 
						|
      </section>
 | 
						|
    </>
 | 
						|
  )
 | 
						|
}
 |