Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Selpak99 authored Aug 27, 2024
1 parent 08a58ee commit c1b95ae
Showing 1 changed file with 47 additions and 45 deletions.
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&apos;m new to the blockchain space and have been diving into various resources to build my knowledge. I&apos;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;

0 comments on commit c1b95ae

Please sign in to comment.