website/app/page.tsx

124 lines
6.1 KiB
TypeScript
Raw Normal View History

2023-12-03 23:02:09 +07:00
"use client"
import Image from 'next/image';
import React from "react";
2023-12-03 23:02:09 +07:00
import Link from 'next/link';
2023-12-23 11:21:03 +07:00
import ContactIcons from './components/ContactIcons';
import PhotoGrid from './components/PhotoGrid';
import ContactButton from './components/ContactButton';
const frontImages = [
[
{ src: '/images/photos/iot/raspberrypi.jpg', href: '/projects', alt: 'Raspberry Pi' },
],
[
{ src: '/images/photos/company/main-server-rack/20231221_151039.jpg', href: '/projects', alt: 'Office Main Rack' },
{ src: '/images/photos/hardware/homelab.jpg', href: '/projects', alt: 'Homelab' },
],
[
{ src: '/images/photos/robotics/robot.jpg', href: '/projects', alt: 'LEGO League'},
{ src: '/images/photos/cosplay/tasm-2-spider-man-2.jpg', href: '/hobbies', alt: 'Spider-Man 2 PS5 Event'}
],
[
{ src: '/images/photos/hardware/hdd.jpg', href: '/projects', alt: 'Storage Server'}
]
];
2023-11-26 21:08:28 +07:00
export default function Home() {
2023-12-03 23:02:09 +07:00
return (
<main>
<div className="min-w-0 mt-6 flex flex-col gap-8 max-lg:mx-4">
<div className="grid grid-cols-3 gap-8 max-lg:flex max-lg:flex-col max-lg:items-center max-sm:items-start">
<div className="col-span-1">
2023-12-03 23:02:09 +07:00
<Image
src="/images/picture.png"
width={200}
height={200}
alt="Win's Logo"
2023-12-03 23:02:09 +07:00
className="rounded-full"
/>
</div>
2023-11-26 21:08:28 +07:00
<div className="col-span-2 grid max-lg:gap-4 max-lg:place-items-center max-sm:place-items-start">
<div>
<p className="text-5xl font-bold">Thanawin Pattanaphol</p>
<p className="text-sm mt-2"> </p>
</div>
<p className="text-base">A <a className="font-bold underline decoration-2 decoration-indigo-500">hobbyist full-stack developer</a>, high schooler, enjoyer of 60s-80s music, language nerd, and a hobbyist electrician.</p>
2023-12-03 23:02:09 +07:00
<ContactIcons />
</div>
2023-11-26 21:08:28 +07:00
<div className='col-span-3 flex flex-col place-items-center max-sm:place-items-start'>
2023-12-22 23:31:58 +07:00
<code className='text-lg max-sm:text-base font-bold'>&quot;I don&apos;t want to make a PDF, I&apos;ll code one instead.&quot;</code>
</div>
2023-12-23 11:21:03 +07:00
<div className="col-span-3 mt-[-15px] flex flex-col gap-4">
<h2 className="text-4xl font-bold">About Me</h2>
2023-12-23 11:21:03 +07:00
<div className='text-lg grid grid-cols-4 max-sm:flex max-sm:flex-col'>
<div>
<span className='font-bold'>Nickname</span>: Win
</div>
<div>
<span className='font-bold'>Age</span>: 16
</div>
<div>
<span className='font-bold'>Nationality</span>: Thai 🇹🇭
</div>
<div>
<span className='font-bold'>Religion</span>: Buddhism
</div>
</div>
2023-12-23 11:21:03 +07:00
<p>
My main field of work is creating <a className="font-bold">web applications</a>. I specialize in <a className="font-bold underline decoration-2 decoration-indigo-500">backend development</a> with <a className="font-bold">Node.js</a> and <a className="font-bold">PHP</a>, as well as working with <a className="font-bold underline decoration-2 decoration-indigo-500">relational databases</a>,
such as <a className="font-bold">MySQL / MariaDB</a>.
2023-12-03 23:02:09 +07:00
</p>
2023-12-23 11:21:03 +07:00
<p>
My other field of work is with <a className="font-bold underline decoration-2 decoration-sky-500">server infrastructure</a>. I am currently administering the IT infrastructure (servers, networking, firewalls)
at my father&apos;s company as well as running my own server setup, also known as a homelab.
2023-12-03 23:02:09 +07:00
</p>
</div>
</div>
2023-11-26 21:08:28 +07:00
2023-12-03 23:02:09 +07:00
<div>
2023-12-23 11:21:03 +07:00
<PhotoGrid images={frontImages} />
2023-12-03 23:02:09 +07:00
<div className="flex justify-center my-4">
<p className="text-lg font-bold">View my <a className="font-bold underline decoration-2 decoration-sky-500">projects</a> and <a className="font-bold underline decoration-2 decoration-pink-500">hobbies</a> by clicking on the images!</p>
</div>
</div>
2023-11-26 21:08:28 +07:00
2023-12-03 23:02:09 +07:00
<div className="grid grid-cols-3 gap-4 max-md:flex max-md:flex-col justify-items-center">
<div className="col-span-3 justify-self-start">
<p className="text-4xl font-bold">
2023-12-03 23:02:09 +07:00
Contact
</p>
</div>
2023-12-23 11:21:03 +07:00
<ContactButton
platform="github"
title="Like my work?"
description="Check them out on my GitHub!"
href="https://github.com/WinsDominoes"
username="@WinsDominoes"
/>
2023-12-03 23:02:09 +07:00
2023-12-23 11:21:03 +07:00
<ContactButton
platform="mastodon"
title="See more posts?"
description="Check updates on my Mastodon!"
href="https://social.winscloud.net/@winsdominoes"
username="@winsdominoes"
/>
2023-12-03 23:02:09 +07:00
2023-12-23 11:21:03 +07:00
<ContactButton
platform="discord"
title="Get in touch?"
description="Send me a message on Discord!"
href="#"
username="winsdominoes"
/>
2023-12-03 23:02:09 +07:00
</div>
</div>
</main>
);
}