First stable application according to tutorial
This commit is contained in:
parent
f5e4be85c4
commit
8d451a87b6
33 changed files with 1090 additions and 113 deletions
17
frontend/src/components/pages/Home.js
Normal file
17
frontend/src/components/pages/Home.js
Normal 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;
|
8
frontend/src/components/pages/Products.js
Normal file
8
frontend/src/components/pages/Products.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
import React from 'react'
|
||||
import '../../App.css'
|
||||
|
||||
export default function Products() {
|
||||
return (
|
||||
<h1 className='products'>PRODUCTS</h1>
|
||||
);
|
||||
}
|
6
frontend/src/components/pages/Services.js
Normal file
6
frontend/src/components/pages/Services.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
import React from 'react'
|
||||
import '../../App.css'
|
||||
|
||||
export default function Services() {
|
||||
return <h1 className="services">SERVICES</h1>;
|
||||
}
|
6
frontend/src/components/pages/SignUp.js
Normal file
6
frontend/src/components/pages/SignUp.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
import React from 'react'
|
||||
import '../../App.css'
|
||||
|
||||
export default function SignUp() {
|
||||
return <h1 className="sign-up">SIGN UP</h1>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue