changed components directory to be all lowercase.

updated import file paths.
This commit is contained in:
Caretaker0699 2023-05-16 14:59:33 -07:00
parent d58327be66
commit 2448e8d2bb
7 changed files with 18 additions and 19 deletions

View File

@ -1,8 +1,7 @@
import '@/styles/globals.css'
import { Fira_Code } from 'next/font/google'
import { AnimatePresence, motion } from "framer-motion";
import VideoAsk from "../components/Elements/VideoAsk.jsx";
import "../styles/globals.css";
import VideoAsk from '../Components/Elements/VideoAsk';
const firaCode = Fira_Code ({
subsets: ["latin"],

View File

@ -1,11 +1,11 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);
export default function Home() {

View File

@ -1,9 +1,9 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);

View File

@ -1,11 +1,11 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);

View File

@ -1,10 +1,10 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);
export default function Home() {

View File

@ -1,10 +1,10 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);
export default function Home() {

View File

@ -1,10 +1,10 @@
import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
import("../components/Layout/ContactFormSection.jsx")
);