hot fix for import paths

This commit is contained in:
Caretaker0699 2023-06-26 17:50:29 -07:00
parent 50b02db5dc
commit 93631f4bfd
2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import React from "react";
import Head from "next/head";
import Navbar from "../components/layouts/NavBar.jsx";
import dynamic from "next/dynamic";
import StatementOfFaithSection from "@/components/layouts/StatementOfFaithSection.jsx";
import StatementOfFaithSection from "../components/layouts/StatementOfFaithSection.jsx";
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
const ContactFormSection = dynamic(() =>

View File

@ -1,8 +1,7 @@
import React from "react";
import Navbar from "../components/layouts/NavBar.jsx";
import SubSection from "../components/layouts/SubSection.jsx"
import dynamic from "next/dynamic";
import SectionTwo from "@/components/layouts/SectionTwo.jsx";
import SectionTwo from "../components/layouts/SectionTwo.jsx";
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
const ContactFormSection = dynamic(() =>