UNPKG

flowviz

Version:

A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.

21 lines (19 loc) 486 B
import * as React from "react"; import Hero from "../component/home/hero"; import FeaturedCardGrid from "../component/home/featuredCardGrid"; import { Box } from "@material-ui/core"; import { Container } from "@material-ui/core"; import { Toolbar } from "@mui/material"; export default function Home() { return ( <> <Toolbar /> <Container maxWidth="lg"> <Box> <Hero /> <FeaturedCardGrid /> </Box> </Container> </> ); }