- Added Google Sans Code font to globals.css for improved typography. - Introduced new CSS variables for theming in globals.css, enhancing dark mode support. - Updated layout.tsx to include custom scrollbar styles from scrollbar.css. - Modified page.tsx to improve the "About" section with more engaging content. - Refactored NeoFetch component for better styling and layout consistency. - Commented out scroll behavior in Top component for smoother navigation. - Added new art.html file for visual representation in the NeoFetch component.
22 lines
437 B
TypeScript
22 lines
437 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import "./scrollbar.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "남현석 | :two_hearts: imnya.ng",
|
|
description: "imnyang's Portfolio Site",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="ko">
|
|
<body className="antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|