-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a67d848
commit 009e009
Showing
38 changed files
with
759 additions
and
97 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; | ||
|
||
import Homescreen from '../pages/Homescreen'; | ||
import ServicesPage from '../pages/ServicesPages'; | ||
import PhotoGalleryPage from '../pages/PhotoGalleryPage'; | ||
import ContactUsPage from '../pages/ContactUsPage'; | ||
import ImpressumPage from '../pages/ImpressumPage'; | ||
|
||
function PageRouter() { | ||
return ( | ||
<Router> | ||
<Routes> | ||
<Route path="/" element={<Homescreen />} /> | ||
<Route path="/services" element={<ServicesPage />} /> | ||
<Route path="/photogallery" element={<PhotoGalleryPage />} /> | ||
<Route path="/contactus" element={<ContactUsPage />} /> | ||
<Route path="/impressum" element={<ImpressumPage />} /> | ||
</Routes> | ||
</Router> | ||
); | ||
} | ||
|
||
export default PageRouter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.contact-form { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
} | ||
|
||
.contact-form input, | ||
.contact-form select, | ||
.contact-form textarea, | ||
.contact-form button { | ||
width: 100%; | ||
padding: 10px; | ||
margin-bottom: 15px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
} | ||
|
||
.contact-form textarea { | ||
height: 150px; | ||
} | ||
|
||
.contact-form button { | ||
color: white; | ||
background-color: #007bff; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
|
||
.contact-form button:disabled { | ||
background-color: #ccc; | ||
cursor: not-allowed; | ||
} | ||
|
||
.submission-confirmation { | ||
text-align: center; | ||
padding: 20px; | ||
} | ||
|
||
.submission-confirmation div { | ||
margin-top: 20px; | ||
} | ||
|
||
.submission-confirmation a { | ||
display: inline-block; | ||
margin: 0 10px; | ||
padding: 10px 15px; | ||
background-color: #007bff; | ||
color: white; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
} |
Oops, something went wrong.