holywyvern/carbuncle

View on GitHub
website/src/pages/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Header from "../components/header"

import DownloadSection from "../components/download-section"
import Introduction from "../components/introduction"
import Features from "../components/features"
import Examples from "../components/examples"

import HomeLayout from "../layouts/home-layout"

function HomePage() {
  return (
    <>
      <HomeLayout>
        <Header />
        <Introduction />
        <DownloadSection />
        <Features />
        <Examples />
      </HomeLayout>
    </>
  )
}

export default HomePage;