임시 커밋 ㅌㅌㅌ

This commit is contained in:
암냥 2024-12-30 13:51:55 +09:00
commit e466796106
48 changed files with 699 additions and 5917 deletions

View file

@ -1,31 +0,0 @@
import type { Metadata } from "next";
import "./globals.css";
import { Provider } from "@/components/ui/provider"
export const metadata: Metadata = {
title: "imnyang",
description: "imnyang's portfolio",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
/>
</head>
<body
className={`antialiased`}
>
<Provider>{children}</Provider>
</body>
</html>
);
}