blueskychan.dev/src/pages/index.jsx

27 lines
709 B
React
Raw Normal View History

2023-12-22 13:59:04 +07:00
import { Inter } 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"
2023-12-22 13:59:04 +07:00
const inter = Inter({ subsets: ["latin"] })
export default function Home() {
return (
<main
2023-12-28 00:33:55 +07:00
className={`flex min-h-screen items-center justify-center ${inter.className}`}
>
<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 ">
<Avatar />
<Profile />
</div>
<div>
<SocialLinks />
<About />
</div>
2023-12-22 13:59:04 +07:00
</div>
2023-12-28 00:33:55 +07:00
</main>
2023-12-22 13:59:04 +07:00
)
}