move components to separate folder

This commit is contained in:
Nathaniel Tampus
2023-02-25 21:14:55 +08:00
parent 3ccbd57e8f
commit d9e5c8150a
5 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import "./globals.css";
import Navbar from "./Navbar";
import Footer from "./Footer";
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (

View File

@@ -1,4 +1,4 @@
import PublicGames from "./PublicGames";
import PublicGames from "@/components/PublicGames";
export default function Home() {
return (