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

Nikolai leb issue 3 4 #16

Closed
wants to merge 3 commits into from
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
"use client";

import Image from "next/image";
import type { NextPage } from "next";
import { Address } from "~~/components/scaffold-eth";

const nikolaiiiProfile: NextPage = () => {
const address = "0x4b7b07D8BAf51975eeAb0E1eb4B481A5aC691ED6";

return (
<div className="flex flex-col items-center gap-4 py-12 px-2 md:px-4 lg:px-8">
<div className="flex flex-col items-center gap-4">
<div className="avatar">
<Image
src="https://avatars.githubusercontent.com/u/7041720"
alt="@nikolaii"
width={120}
height={120}
className="rounded-full ring ring-primary"
/>
</div>
<h1 className="text-4xl font-bold">@nikolaiii</h1>
<Address address={address} />
</div>

<div className="max-w-2xl text-center">
<p className="text-lg mb-4">I cook frames on Warpcast</p>
<div className="flex gap-4 justify-center">
<a
href="https://github.com/NikolaiL"
target="_blank"
rel="noopener noreferrer"
className="btn btn-primary btn-sm font-normal gap-1"
>
GitHub
</a>
<a
href="https://warpcast.com/nikolaiii"
target="_blank"
rel="noopener noreferrer"
className="btn btn-primary btn-sm font-normal gap-1"
>
Warpcast
</a>
</div>
</div>

<div className="card w-full max-w-2xl bg-base-100 shadow-xl mt-8">
<div className="card-body">
<h2 className="card-title">About Me</h2>
<p>👋 Hello! I am Nikolai</p>
<p>
I am passionate about analytics and web3. Started working on Bitclout (now Deso) analytics in 2021 and built{" "}
<a className="link" href="https://altumbase.com" target="_blank" rel="noopener noreferrer">
AltumBase
</a>
. Until today most of the Deso nodes use it as a source for user analytics.
</p>
<p>
In March 2024 started making frames (mini-apps) on Warpcast. You can check out my profile at{" "}
<a className="link" href="https://warpcast.com/nikolaiii" target="_blank" rel="noopener noreferrer">
warpcast.com/nikolaiii
</a>
.
</p>
<p>In order to elevate my frames I started learning smart contracts and this is how I got here.</p>
<p>
If you are not yet on Warpcast, I really think you should join. It is a great place to build. Please let me
know if you need an free invite.
</p>
<p>Wishing you all a Happy Based Building New Year!</p>
</div>
</div>
</div>
);
};

export default nikolaiiiProfile;
4 changes: 2 additions & 2 deletions packages/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import "~~/styles/globals.css";
import { getMetadata } from "~~/utils/scaffold-eth/getMetadata";

export const metadata = getMetadata({
title: "Scaffold-ETH 2 App",
description: "Built with 🏗 Scaffold-ETH 2",
title: "BuidlGuidl Batch 12",
description: "Seizing the Right Time to Build",
});

const ScaffoldEthApp = ({ children }: { children: React.ReactNode }) => {
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ export const Header = () => {
<Image alt="SE2 logo" className="cursor-pointer" fill src="/logo.svg" />
</div>
<div className="flex flex-col">
<span className="font-bold leading-tight">Scaffold-ETH</span>
<span className="text-xs">Ethereum dev stack</span>
<span className="font-bold leading-tight">BuidlGuidl Batch 12</span>
<span className="text-xs">Seizing the Right Time to Build</span>
</div>
</Link>
<ul className="hidden lg:flex lg:flex-nowrap menu menu-horizontal px-1 gap-2">
Expand Down
5 changes: 5 additions & 0 deletions packages/nextjs/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const nextConfig = {
config.externals.push("pino-pretty", "lokijs", "encoding");
return config;
},
images: {
remotePatterns: [
{ hostname: "avatars.githubusercontent.com" },
],
},
};

module.exports = nextConfig;
Binary file modified packages/nextjs/public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 19 additions & 9 deletions packages/nextjs/public/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 modified packages/nextjs/public/thumbnail.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading