Skip to content

Commit

Permalink
fix: folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBunzy committed Oct 31, 2024
1 parent 40eb8fe commit 146aed8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/bin/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ async function copyTemplateFiles(projectPath: string) {
},
{
source: "components/DefaultLayout.txt",
target: path.join(componentsDir, "DefaultLayout.tsx"),
target: path.join(targetDir, "components", "DefaultLayout.tsx"),
},
{
source: "components/ConnectWallet.txt",
target: path.join(componentsDir, "ConnectWallet.tsx"),
target: path.join(targetDir, "components", "ConnectWallet.tsx"),
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/templates/next/app/layout.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import DefaultLayout from "./DefaultLayout";
import DefaultLayout from "./components/DefaultLayout";

const inter = Inter({ subsets: ["latin"] });

Expand Down
1 change: 0 additions & 1 deletion src/templates/next/app/page.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

/** @format */

import DefaultLayout from "./components/DefaultLayout";
import { UNISAT, useLaserEyes } from "@omnisat/lasereyes";

export default function Home() {
Expand Down

0 comments on commit 146aed8

Please sign in to comment.