1
0
mirror of https://github.com/vercel/commerce.git synced 2025-03-29 08:45:53 +00:00
2020-09-30 10:51:53 -03:00

30 lines
873 B
TypeScript

import cn from "classnames";
import React, { FunctionComponent } from "react";
import s from "./Layout.module.css";
import { Navbar, Featurebar } from "@components/core";
import { Container, Sidebar } from "@components/ui";
import { CartSidebarView } from "@components/cart";
interface Props {
className?: string;
children?: any;
}
const Layout: FunctionComponent<Props> = ({ className, children }) => {
const rootClassName = cn(s.root, className);
return (
<Container className={rootClassName}>
<Featurebar
title="Free Standard Shipping on orders over $99.99"
description="Due to COVID-19, some orders may experience processing and delivery delays."
/>
<Navbar />
<main className="h-screen">{children}</main>
<Sidebar>
<CartSidebarView />
</Sidebar>
</Container>
);
};
export default Layout;