-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
45 deletions.
There are no files selected for viewing
92 changes: 47 additions & 45 deletions
92
packages/nextjs/app/builders/0x357bc010520575Ea5720aC3F7cb48fcedfc711Ed/page.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,59 @@ | ||
"use client" | ||
import { BriefcaseIcon, CodeBracketIcon } from '@heroicons/react/20/solid'; | ||
import { NextPage } from 'next'; | ||
import React from 'react'; | ||
"use client"; | ||
|
||
import React from "react"; | ||
import { BriefcaseIcon, CodeBracketIcon } from "@heroicons/react/20/solid"; | ||
import { NextPage } from "next"; | ||
|
||
const handleClick1 = () => { | ||
window.open('https://github.com/Selpak99', '_blank', 'noopener,noreferrer'); | ||
window.open("https://github.com/Selpak99", "_blank", "noopener,noreferrer"); | ||
}; | ||
|
||
const handleClick2 = () => { | ||
window.open('https://app.buidlguidl.com/builders/0x357bc010520575Ea5720aC3F7cb48fcedfc711Ed', '_blank', 'noopener,noreferrer'); | ||
window.open("https://app.buidlguidl.com/builders/0x357bc010520575Ea5720aC3F7cb48fcedfc711Ed", "_blank", "noopener,noreferrer"); | ||
}; | ||
|
||
const Page: NextPage = () => { | ||
return ( | ||
<> | ||
<div className="rating gap-1 mx-auto mt-10"> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-red-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-orange-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-yellow-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-lime-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-green-400" defaultChecked /> | ||
</div> | ||
<div className="flex items-center flex-col flex-grow pt-10"> | ||
<div className="px-5"> | ||
<h1 className="text-center"> | ||
<span className="block text-4xl font-bold">Hello, This is Selpak!</span> | ||
</h1> | ||
<p className="text-center text-lg mt-4">Blockchain Enthusiast</p> | ||
</div> | ||
return ( | ||
<> | ||
<div className="rating gap-1 mx-auto mt-10"> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-red-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-orange-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-yellow-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-lime-400" /> | ||
<input type="radio" name="rating-3" className="mask mask-heart bg-green-400" defaultChecked /> | ||
</div> | ||
<div className="flex items-center flex-col flex-grow pt-10"> | ||
<div className="px-5"> | ||
<h1 className="text-center"> | ||
<span className="block text-4xl font-bold">Hello, This is Selpak!</span> | ||
</h1> | ||
<p className="text-center text-lg mt-4">Blockchain Enthusiast</p> | ||
</div> | ||
|
||
<div className="px-5 py-10 bg-base-300 rounded-lg"> | ||
<h2 className="text-2xl font-bold text-center mb-4">About Me</h2> | ||
<div className="max-w-xl mx-auto"> | ||
<p className="text-center text-lg mb-4"> | ||
I'm new to the blockchain space and have been diving into various resources to build my knowledge. I'm excited to continue growing and contributing to this field. | ||
</p> | ||
</div> | ||
</div> | ||
<div className="px-5 py-10 bg-base-300 rounded-lg"> | ||
<h2 className="text-2xl font-bold text-center mb-4">About Me</h2> | ||
<div className="max-w-xl mx-auto"> | ||
<p className="text-center text-lg mb-4"> | ||
I'm new to the blockchain space and have been diving into various resources to build my knowledge. I'm excited to continue growing and contributing to this field. | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div className="flex-grow w-full mt-16"> | ||
<div className="flex justify-center items-center gap-8 flex-col sm:flex-row"> | ||
<button className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl" onClick={handleClick1}> | ||
<CodeBracketIcon className="h-8 w-8 fill-secondary" /> | ||
Github | ||
</button> | ||
<button className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl" onClick={handleClick2}> | ||
<BriefcaseIcon className="h-8 w-8 fill-secondary" /> | ||
Buidl Guidl | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
<div className="flex-grow w-full mt-16"> | ||
<div className="flex justify-center items-center gap-8 flex-col sm:flex-row"> | ||
<button className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl" onClick={handleClick1}> | ||
<CodeBracketIcon className="h-8 w-8 fill-secondary" /> | ||
Github | ||
</button> | ||
<button className="flex flex-col bg-base-100 px-6 py-6 text-center items-center max-w-xs rounded-3xl" onClick={handleClick2}> | ||
<BriefcaseIcon className="h-8 w-8 fill-secondary" /> | ||
Buidl Guidl | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Page; |