create landing page
This commit is contained in:
30
kivi-cars/src/containers/LandingPage.js
Normal file
30
kivi-cars/src/containers/LandingPage.js
Normal file
@@ -0,0 +1,30 @@
|
||||
import logo from '../assets/logo.png'
|
||||
import StandardBtn from '../components/Button/StandardBtn';
|
||||
import Header from '../components/Header/Header';
|
||||
import './LandingPage.css'
|
||||
|
||||
function LandingPage() {
|
||||
|
||||
const naslov = 'KIVI - CARS';
|
||||
var naziv = 'KUPI';
|
||||
|
||||
return (
|
||||
<div className="landing-page">
|
||||
<div className='logo-img'>
|
||||
<img className='logo' src={logo}/>
|
||||
</div>
|
||||
|
||||
<Header className='header' header={naslov}/>
|
||||
<div className='paragraph'>
|
||||
<h2> Sva motorna vozila dostupna u oglasima </h2>
|
||||
<h2> Na Vas email </h2>
|
||||
<h2 id='besplatno'> BESPLATNO </h2>
|
||||
|
||||
</div>
|
||||
<StandardBtn title={naziv}/>
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default LandingPage;
|
||||
Reference in New Issue
Block a user