import * as React from "react"; import { Link } from "gatsby"; import styled from "styled-components"; import DashboardLayout from "./DashboardLayout"; const Sidebar = () => ( ); const SidebarLink = styled(Link).attrs({ className: `h-12 py-3 px-6 w-full flex border-l-2 border-l-palette-200 border-b border-b-palette-100 last:border-b-transparent`, })``; const Content = styled.main.attrs({ className: "relative bg-white rounded px-6 py-6 sm:px-16 sm:py-14 mt-6 lg:mt-0 bg-none xl:bg-corner-circle", })` background-repeat: no-repeat; `; const UserSettingsLayout = ({ children }) => (
Settings
{children}
); export default UserSettingsLayout;