Last active
May 17, 2023 14:22
-
-
Save DistractionBoy/916a1663d0a38526b8ba6ffc603f48eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { NextPage } from "next"; | |
import { | |
HeadMeta, | |
LeftSidebar, | |
RightSidebar, | |
PortfolioSummary, | |
MainContentSection, | |
} from "../components"; | |
const Home: NextPage = () => { | |
return ( | |
<> | |
<HeadMeta /> | |
<div className="py-10 flex flex-col"> | |
<div className="w-screen flex flex-col justify-start items-stretch px-4 md:mx-auto md:px-6 lg:max-w-7xl lg:grid lg:grid-cols-12 lg:gap-8"> | |
<LeftSidebar /> | |
<section className="flex flex-col lg:col-span-9 xl:col-span-10"> | |
<PortfolioSummary /> | |
<main className="mt-4 lg:grid lg:grid-cols-12 lg:gap-4"> | |
<div className="col-span-12 lg:col-span-8"> | |
<MainContentSection /> | |
</div> | |
<RightSidebar /> | |
</main> | |
</section> | |
</div> | |
</div> | |
</> | |
); | |
}; | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment