First stable application according to tutorial

This commit is contained in:
cami 2021-05-25 23:40:27 +02:00
parent f5e4be85c4
commit 8d451a87b6
33 changed files with 1090 additions and 113 deletions

View file

@ -0,0 +1,17 @@
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 />
</>
)
}
export default Home;

View file

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

View file

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

View file

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