blueskychan.dev/src/pages/index.jsx

39 lines
1.1 KiB
React
Raw Normal View History

2024-05-06 17:02:40 +00:00
//import { Mali } from "next/font/google"
2023-12-23 13:21:32 +07:00
import About from "~/components/About"
import Avatar from "~/components/Avatar"
import Profile from "~/components/Profile"
import SocialLinks from "~/components/SocialLinks"
import Head from "next/head"
2023-12-22 13:59:04 +07:00
2024-05-06 17:02:40 +00:00
//const inter = Mali({ subsets: ["latin"], weight: "400" })
2023-12-22 13:59:04 +07:00
export default function Home() {
return (
2023-12-29 22:09:07 +07:00
<>
<Head>
2023-12-28 01:00:56 +07:00
<title>About blueskychan_ :3</title>
2024-06-08 06:25:55 +00:00
<meta name="theme-color" content="#FFC0CB" />
<meta property="og:title" content="Hello, World! <3" key="title" />
<meta
property="og:description"
content="About some stupid person call blueskychan, or Mind :3"
/>
<link rel="icon" href="/favicon.webp" sizes="any" />
2023-12-28 01:00:56 +07:00
</Head>
2023-12-29 22:09:07 +07:00
2024-07-21 20:51:31 +07:00
<main>
2024-04-16 02:00:13 +07:00
<div className="backdrop-blur-md bg-[#1b1327]/50 rounded-lg p-3 max-w-md md:max-w-lg overflow-hidden overflow-ellipsis">
2023-12-29 22:09:07 +07:00
<div className="flex flex-row space-x-3 items-center p-3">
<Avatar />
<Profile />
</div>
<div>
<SocialLinks />
<About />
</div>
2023-12-28 00:33:55 +07:00
</div>
2023-12-29 22:09:07 +07:00
</main>
</>
2023-12-22 13:59:04 +07:00
)
}