changes made to file naming structure
This commit is contained in:
parent
a6996564ce
commit
5242d04a46
@ -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,
|
@ -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 = ({
|
@ -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 ({
|
||||
|
@ -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() {
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
@ -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() {
|
||||
|
@ -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() {
|
||||
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user