Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Nodes/BG Client section #57

Merged
merged 6 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,50 @@ const Home: NextPage<{
</div>
</div>

{/* Nodes section */}
<div className="bg-[#EBEBEB] relative px-[13px]">
<div className="w-full border-t border-black absolute lg:top-16 top-14 left-0"></div>
<div className="h-full border-l border-black absolute top-0 lg:left-[76px] left-[58px]"></div>
<div className="w-full border-t border-black absolute lg:bottom-16 bottom-14 left-0"></div>
<div className="h-full border-l border-black absolute top-0 lg:right-[76px] right-[58px]"></div>
<div className="flex flex-col flex-grow lg:flex-row px-10 py-14 lg:py-16 lg:px-14 text-black">
{/* First column */}
<div className="flex flex-col flex-wrap">
ChangoMan marked this conversation as resolved.
Show resolved Hide resolved
<div className="flex items-start p-7 w-full lg:border-t lg:border-l lg:border-r-0 lg:border-b-0 border border-black">
<Image
src="/assets/client-logo.svg"
alt="client logo"
className="lg:w-[250px]"
width={200}
height={200}
/>
</div>
<div className="md:flex flex-row flex-grow lg:border-y lg:border-l lg:border-r-0 border-x border-black">
<div className="flex flex-col justify-between items-start bg-[#FF66F9] p-7 pt-4">
<p className="lg:text-base text-sm font-mono pb-4">
A one line command to deploy and monitor an Ethereum Node, funded and maintained by BuidlGuidl
members.
</p>
<TrackedLink
id="BG-Nodes"
href="https://client.buidlguidl.com"
className="btn btn-md text-xs lg:text-base px-8 hover:opacity-100 font-mono bg-white text-black border-black rounded-none hover:bg-[#4AF361] hover:border-black"
>
Go to site
</TrackedLink>
</div>
<div className="hidden sm:flex flex-col items-center bg-[#4AF361] p-3 min-w-[200px] md:border-l border-t md:border-t-0 border-black">
<Image src="/assets/satellite.png" alt="satellite" width={200} height={200} />
</div>
</div>
</div>
{/* Second column */}
<div className="flex flex-col items-center p-6 md:min-w-[400px] border border-black bg-[#4AF361] sm:bg-transparent">
<Image src="/assets/screenshot.png" alt="screenshot" width={700} height={700} />
</div>
</div>
</div>

{/* Grants */}
<div className="bg-[#282C52]">
<div className="mx-auto lg:max-w-7xl">
Expand Down
25 changes: 25 additions & 0 deletions packages/nextjs/public/assets/client-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/assets/satellite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/assets/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading