Skip to content

Commit

Permalink
Improvements to roadmap
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Nov 22, 2024
1 parent 705f539 commit dbb8bfc
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions packages/nextjs/app/roadmap/Roadmap.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"use client";

import Image from "next/image";
import Link from "next/link";
import { NFTMetaData } from "~~/utils/simpleNFT/nftsMetadata";

Expand Down Expand Up @@ -265,6 +266,55 @@ export const Roadmap = () => {
</ul>
</section>
</section>

<div className="hero bg-base-100 flex flex-col justify-start ">
<div className="w-full pt-6 bg-base-100">
<h1 className="text-4xl font-mono text-center">Meet us! 🤘</h1>
</div>
<div className="hero-content flex-col md:flex-row">
<div className="flex flex-col items-center gap-3 bg-base-100 rounded-lg border-2">
<figure className="px-10 pt-5 flex-shrink-0">
<Image src="/lulox.jpg" alt="Lulox" className="rounded-xl" width={200} height={200} />
</figure>
<div className="flex pb-5 flex-col items-center justify-center">
<h2 className="text-3xl">Lulox</h2>
<span className="italic">Buidler</span>
<a
className="flex justify-center items-center gap-1"
href="https://linktr.ee/lulox"
target="_blank"
rel="noreferrer"
>
<button className="btn btn-success mt-2">Linktree</button>
</a>
</div>
</div>

<div className="flex flex-col items-center gap-3 bg-base-100 rounded-lg border-2">
<figure className="px-10 pt-5 flex-shrink-0">
<Image
src="/guest-profile.jpg"
alt="Undefined profile picture"
className="rounded-xl"
width={200}
height={200}
/>
</figure>
<div className="flex pb-5 flex-col items-center justify-center">
<h2 className="text-3xl">You?</h2>
<span className="italic">Buidler</span>
<a
className="flex justify-center items-center gap-1"
href="https://linktr.ee/lulox"
target="_blank"
rel="noreferrer"
>
<button className="btn btn-primary mt-2">Contact Lulox!</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
);
Expand Down

0 comments on commit dbb8bfc

Please sign in to comment.