backup before fucked

This commit is contained in:
Phapoom Saksri 2023-12-27 22:35:11 +07:00
parent b627911311
commit 7c11b02db7
9 changed files with 35 additions and 33 deletions

10
pnpm-lock.yaml generated
View file

@ -8,9 +8,6 @@ dependencies:
"@phosphor-icons/react": "@phosphor-icons/react":
specifier: ^2.0.15 specifier: ^2.0.15
version: 2.0.15(react-dom@18.2.0)(react@18.2.0) version: 2.0.15(react-dom@18.2.0)(react@18.2.0)
fs:
specifier: 0.0.1-security
version: 0.0.1-security
gray-matter: gray-matter:
specifier: ^4.0.3 specifier: ^4.0.3
version: 4.0.3 version: 4.0.3
@ -707,13 +704,6 @@ packages:
} }
dev: true dev: true
/fs@0.0.1-security:
resolution:
{
integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==,
}
dev: false
/fsevents@2.3.3: /fsevents@2.3.3:
resolution: resolution:
{ {

BIN
public/pfp.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 KiB

View file

@ -7,8 +7,12 @@ const About = () => {
<div className="border-t md:border-t-2"></div> <div className="border-t md:border-t-2"></div>
</div> </div>
<div className="p-4 text-balance max-w-md"> <div className="p-4 text-balance max-w-md">
Time changes world changes everything changes I mean should I accept the Hi my name is blueskychan_ (Shorly you can call me garfield/fuse/mind)
world? :3, a stupid 14 y/o person in this earth 🌎, I am a student in
Benjamarachanusorn School! I live in Nonthaburi, Thailand 🇹🇭, I like
computer and programming stuffs I play osu! and Minecraft/Roblox in
sometimes, I like to listen to music I can write code in C# and C++, i
still learning Python, JavaScript, and go!
</div> </div>
</> </>
) )

View file

@ -4,9 +4,9 @@ const Avatar = () => {
return ( return (
<> <>
<div className="rounded-2xl overflow-hidden w-24" id="status"> <div className="rounded-2xl overflow-hidden w-24" id="status">
<Image src="/pfp.png" width={128} height={128} alt="Profile picture" /> <Image src="/pfp.jpg" width={128} height={128} alt="Profile picture" />
</div> </div>
<Tooltip anchorSelect="#status" content="Nothing is impossible now!" /> <Tooltip anchorSelect="#status" content=":3" />
</> </>
) )
} }

View file

@ -2,10 +2,10 @@ const Profile = () => {
return ( return (
<div className="text-gray-300 text-lg"> <div className="text-gray-300 text-lg">
<p className="space-x-1"> <p className="space-x-1">
<span className="text-gray-100 text-lg font-bold">bluestar</span> <span className="text-gray-100 text-lg font-bold">blueskychan_</span>
<span className="font-extralight">she/her</span> <span className="font-extralight text-sm">she/they :3</span>
</p> </p>
<div className="text-sm font-bold">Acer Pricker</div> <div className="text-sm font-bold">Phapoom Saksri</div>
</div> </div>
) )
} }

View file

@ -9,18 +9,18 @@ const inter = Inter({ subsets: ["latin"] })
export default function Home() { export default function Home() {
return ( return (
<main <main
className={`flex min-h-screen items-center justify-center ${inter.className}`} className={`flex min-h-screen items-center justify-center ${inter.className}`}
> >
<div className="backdrop-blur-md bg-gray-700/50 rounded-lg"> <div className="backdrop-blur-md bg-gray-700/50 rounded-lg p-2">
<div className="flex flex-row space-x-3 p-4 items-center "> <div className="flex flex-row space-x-3 p-4 items-center ">
<Avatar /> <Avatar />
<Profile /> <Profile />
</div>
<div>
<SocialLinks />
<About />
</div>
</div> </div>
</main> <div>
<SocialLinks />
<About />
</div>
</div>
</main>
) )
} }

View file

@ -27,7 +27,8 @@ export async function getStaticProps({ params: { slug } }) {
} }
export default function PostPage({ frontmatter, content }) { export default function PostPage({ frontmatter, content }) {
const proseClass = "prose p-4 prose-invert prose-neutral mx-auto bg-gray-700/50 backdrop-blue-md backdrop-blur-md h-screen" const proseClass =
"prose p-4 prose-invert prose-neutral mx-auto bg-gray-700/50 backdrop-blue-md backdrop-blur-md h-screen"
return ( return (
<div className={proseClass}> <div className={proseClass}>
<h1 className="border-b-2 p-1">{frontmatter.title}</h1> <h1 className="border-b-2 p-1">{frontmatter.title}</h1>

View file

@ -2,13 +2,20 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
:root { html {
/* Apply background styles to the html element */
--background-image: url("/illust_111261733_20231222_212212.jpg"); --background-image: url("/illust_111261733_20231222_212212.jpg");
background-image: var(--background-image); background-image: var(--background-image);
background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover; background-size: cover;
background-position: center center;
color: rgb(255, 255, 255); color: rgb(255, 255, 255);
height: 100%; /* Ensure full height */
}
body {
/* Ensure body also fills viewport */
height: 100%; height: 100%;
} }