feat(ui): implement SUPERCOMMAND component and integrate it into the layout; add Projects component for project display

This commit is contained in:
암냥 2025-10-26 22:18:37 +09:00
commit 506a9bef40
No known key found for this signature in database
6 changed files with 151 additions and 4 deletions

View file

@ -1,6 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import "./scrollbar.css";
import SUPERCOMMAND from "@/components/SUPERCOMMAND";
export const metadata: Metadata = {
title: "남현석 | :two_hearts: imnya.ng",
@ -16,6 +17,7 @@ export default function RootLayout({
<html lang="ko">
<body className="antialiased">
{children}
<SUPERCOMMAND />
</body>
</html>
);