changed components directory to be all lowercase.
updated import file paths.
This commit is contained in:
parent
d58327be66
commit
2448e8d2bb
@ -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"],
|
||||
|
@ -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() {
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
@ -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() {
|
||||
|
@ -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() {
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user