调整组件位置

This commit is contained in:
2025-05-12 22:43:24 +08:00
parent 367ec1d9a0
commit b764d3c932
6 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import Header from "../components/Header"; import Header from "../../components/Header";
import Footer from "../components/Footer"; import Footer from "../../components/Footer";
export default function LayoutWithHeaderFooter({ export default function LayoutWithHeaderFooter({
children, children,

View File

@@ -2,8 +2,8 @@
import { authApi, verificationApi } from "@/lib/api"; import { authApi, verificationApi } from "@/lib/api";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
import { toast } from "sonner"; import { toast } from "sonner";
import Header from "@/app/components/Header"; import Header from "@/components/Header";
import Footer from "@/app/components/Footer"; import Footer from "@/components/Footer";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card"; import { Card, CardContent } from "@/components/ui/card";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";

View File

@@ -1,6 +1,6 @@
import { Geist, Geist_Mono } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ThemeProvider } from "./components/theme-provider"; import { ThemeProvider } from "../components/theme-provider";
import { metadata } from "./config/metadata"; import { metadata } from "./config/metadata";
import { Toaster } from "sonner"; import { Toaster } from "sonner";