Refactoring because of local scripts and tabs

In this commit I want to refactor some things.
- I don't want to use external connections so I moved all that shit to localhost
- I do not need so many spaces as it is bad for formatting
This commit is contained in:
cami 2021-05-27 03:07:54 +02:00
parent 80f9586d36
commit 29142a9977
14 changed files with 393 additions and 380 deletions

View file

@ -1,17 +1,17 @@
import React from 'react';
import '../../App.css'
import HeroSection from '../HeroSection'
import Cards from '../Cards'
import Footer from '../../Footer';
import React from "react";
import "../../App.css";
import HeroSection from "../HeroSection";
import Cards from "../Cards";
import Footer from "../../Footer";
function Home() {
return (
<>
<HeroSection />
<Cards />
<Footer />
</>
)
return (
<>
<HeroSection />
<Cards />
<Footer />
</>
);
}
export default Home;
export default Home;

View file

@ -1,8 +1,12 @@
import React from 'react'
import '../../App.css'
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function Products() {
return (
<h1 className='products'>PRODUCTS</h1>
);
}
return (
<>
<h1 className="products">PRODUCTS</h1>
<Footer />
</>
);
}

View file

@ -1,6 +1,12 @@
import React from 'react'
import '../../App.css'
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function Services() {
return <h1 className="services">SERVICES</h1>;
}
return (
<>
<h1 className="services">SERVICES</h1>
<Footer />
</>
);
}

View file

@ -1,6 +1,12 @@
import React from 'react'
import '../../App.css'
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function SignUp() {
return <h1 className="sign-up">SIGN UP</h1>;
}
return (
<>
<h1 className="sign-up">SIGN UP</h1>
<Footer />
</>
);
}