diff --git a/kivi-cars/src/containers/App.js b/kivi-cars/src/containers/App.js index f6b932d..bdc2136 100644 --- a/kivi-cars/src/containers/App.js +++ b/kivi-cars/src/containers/App.js @@ -1,15 +1,12 @@ import './App.css'; import React from 'react'; -import Category from './Category'; +import CongratsPage from './CongratsPage'; function App() { - const naslov = 'Dobrodosli na stranicu kivi!' - - return (
- +
); } diff --git a/kivi-cars/src/containers/CongratsPage.css b/kivi-cars/src/containers/CongratsPage.css new file mode 100644 index 0000000..7f41dc1 --- /dev/null +++ b/kivi-cars/src/containers/CongratsPage.css @@ -0,0 +1,57 @@ +.first-paragh { + padding-top: 20px; + margin-top: 50px; +} + +.second-paragh{ + margin-bottom: 60px; + padding: 20px; +} + +.third-paragh{ + padding: 20px; + margin-bottom: 10px; +} + +.h1 { + text-align: center; +} + +.h2 { + text-align: center; +} + +@media screen and (max-width: 800px) { + .h2 { + font-size: 20px;} + } + + +@media screen and (max-width: 600px) { + .h2 { + font-size: 17px;} + } + + +@media screen and (max-width: 300px) { + .h2 { + font-size: 15px;} + } + + +@media screen and (max-width: 800px) { + .h1 { + font-size: 27px;} + } + + +@media screen and (max-width: 600px) { + .h1 { + font-size: 22px;} + } + + +@media screen and (max-width: 300px) { + .h1 { + font-size: 18px;} + } diff --git a/kivi-cars/src/containers/CongratsPage.js b/kivi-cars/src/containers/CongratsPage.js new file mode 100644 index 0000000..661da67 --- /dev/null +++ b/kivi-cars/src/containers/CongratsPage.js @@ -0,0 +1,30 @@ +import Header from '../components/Header/Header'; +import StandardBtn from '../components/Button/StandardBtn'; +import './CongratsPage.css' + +function CongratsPage() { + + const naslov = 'ČESTITAMO!' + const btnTitle = 'NOVA PRETRAGA' + + return ( +
+
+
+
+

ČESTITAMO! Potvrđeni email je poslat na vašu email adresu.

+
+
+

Svi rezultati će u najkraćem roku biti poslani na vašu adresu.

+
+
+

Ako želite novu pretragu idete na

+
+ + +
+
+ ); +} + +export default CongratsPage; \ No newline at end of file