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>
);

View file

@ -1,4 +1,5 @@
import NeoFetch from "@/components/NeoFetch";
import Projects from "@/components/Projects";
import TimelineComponent from "@/components/timeline";
import Top from "@/components/Top";
@ -16,8 +17,7 @@ export default function Home() {
<p> <strong> </strong> .</p>
<br />
<p> .</p>
<a href="https://www.youtube.com/playlist?list=PLZeYZotn5_IOJDek6e35NKzUtJm09yxZD">Effect Playing Contest 2025 Broadcast Develop</a><br />
<a href="https://github.com/imnyang/today.isangjeong">today.isangjeong</a>
<Projects />
</div>
<TimelineComponent />