changes made to file naming structure

This commit is contained in:
Caretaker0699 2023-05-16 15:42:34 -07:00
parent a6996564ce
commit 5242d04a46
17 changed files with 21 additions and 21 deletions

View File

@ -1,5 +1,5 @@
import ContactButton from "../Buttons/ContactButton.jsx";
import ContactThreeJsComponent from "../Elements/ContactThreeJsComponent.jsx";
import ContactButton from "../buttons/ContactButton.jsx";
import ContactThreeJsComponent from "../elements/ContactThreeJsComponent.jsx";
const ContactFormSection = ({
text,

View File

@ -1,5 +1,5 @@
import React, { useEffect, useRef, useState } from "react";
import VideoButton from "../Buttons/video-button.jsx";
import VideoButton from "../buttons/video-button.jsx";
import Link from "next/link";
const Section = ({

View File

@ -1,6 +1,6 @@
import { Fira_Code } from 'next/font/google'
import { AnimatePresence, motion } from "framer-motion";
import VideoAsk from "../components/Elements/VideoAsk.jsx";
import VideoAsk from "../components/elements/VideoAsk.jsx";
import "../styles/globals.css";
const firaCode = Fira_Code ({

View File

@ -1,11 +1,11 @@
import React from "react";
import Navbar from "../components/Layout/navbar.jsx";
import Navbar from "../components/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/layouts/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
import("../components/layouts/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/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
import("../components/layouts/ContactFormSection.jsx")
);

View File

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

View File

@ -1,10 +1,10 @@
import React from "react";
import Navbar from "../components/Layout/navbar.jsx";
import Navbar from "../components/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/layouts/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
import("../components/layouts/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/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/layouts/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
import("../components/layouts/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/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../components/Layout/section.jsx"));
const Section = dynamic(() => import("../components/layouts/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
import("../components/layouts/ContactFormSection.jsx")
);