From 16106ee5dfeb7623aee461cae01ecc3ac75c4a59 Mon Sep 17 00:00:00 2001 From: Vu Huy Hoang Date: Tue, 4 Jun 2024 20:40:21 +0700 Subject: [PATCH] Add HoangVu personal page --- .../page.tsx | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 packages/nextjs/app/builders/0xDbD3834299D363B4Fb84Aef9309d3068E52CFc0C/page.tsx diff --git a/packages/nextjs/app/builders/0xDbD3834299D363B4Fb84Aef9309d3068E52CFc0C/page.tsx b/packages/nextjs/app/builders/0xDbD3834299D363B4Fb84Aef9309d3068E52CFc0C/page.tsx new file mode 100644 index 0000000..b53c83e --- /dev/null +++ b/packages/nextjs/app/builders/0xDbD3834299D363B4Fb84Aef9309d3068E52CFc0C/page.tsx @@ -0,0 +1,94 @@ +import Link from "next/link"; +import type { NextPage } from "next"; +import { + AcademicCapIcon, + ChatBubbleBottomCenterTextIcon, + EnvelopeIcon, + IdentificationIcon, +} from "@heroicons/react/24/outline"; + +const HoangVu: NextPage = () => { + return ( + <> +
+
+

+ Hello everyone,... + My name is Hoang Vu + And you can call me J! +

+
+ +
+
+
+
+
+

+ I'm a blockchain enthusiast. I love spending time learning and building web3 projects. +

+

+ I'm really happy to be here, and I hope that we will have a memorable time together! +

+
+
+
+ +
+
+
+ +

+ Explore my projects on{" "} + + GitHub + +

+
+ +
+ +

+ Contact me via this{" "} + + email + +

+
+
+ +
+
+ +

+ View my profile on{" "} + + LinkedIn + +

+
+ +
+ +

+ Follow me on{" "} + + Twitter + +

+
+
+
+
+
+
+ + ); +}; + +export default HoangVu;