-
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.
Merge branch 'develop' into feature/add-advantages-section
- Loading branch information
Showing
14 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
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
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
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
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,9 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
|
||
location / { | ||
root /usr/share/nginx/html; | ||
try_files $uri $uri/ /index.html; | ||
} | ||
} |
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
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
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
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
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,27 @@ | ||
import Button from "../Button"; | ||
|
||
function Contact() { | ||
return ( | ||
<section className="px-4 max-w-screen-lg mx-auto my-28 md:grid md:grid-cols-2 md:gap-x-10 md:px-6 lg:my-36 xl:max-w-screen-xl xl:my-44"> | ||
<h2 className="font-lato font-bold text-2xl mb-6 lg:mb-10 lg:text-3xl"> | ||
Hast du weitere Fragen, Feedback oder ein Anliegen? | ||
</h2> | ||
<article> | ||
<p className="mb-6 lg:mb-10"> | ||
Konnten deine Fragen nicht beantwortet werden oder hast du möchtest du mehr Informationen erfahren? | ||
Bei Fragen, Anregungen oder Anliegen kannst du uns gern kontaktieren. | ||
Unser Team wird sich schnellstmöglich bei dir melden. | ||
</p> | ||
|
||
<Button href="mailto:[email protected]" ariaLabel="Kontaktiere uns gern per Mail" isDark> | ||
<img | ||
src="/assets/svg/socials/mail.svg" | ||
className="w-6 h-6" alt="" loading="lazy"/> | ||
<span>Kontakt</span> | ||
</Button> | ||
</article> | ||
</section> | ||
); | ||
} | ||
|
||
export default Contact; |
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
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
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 |
---|---|---|
|
@@ -13,12 +13,12 @@ function Footer() { | |
Consequat occaecat adipisicing culpa. | ||
</p> | ||
<div className="flex flex-wrap gap-6 mt-8"> | ||
{/* <Button href="mailto:" ariaLabel="Kontaktiere uns gern per Mail"> | ||
<Button href="mailto:[email protected]" ariaLabel="Kontaktiere uns gern per Mail"> | ||
<img | ||
src="/assets/svg/socials/mail.svg" | ||
className="w-6 h-6" alt="" loading="lazy"/> | ||
<span>Kontakt</span> | ||
</Button> */} | ||
</Button> | ||
<Button href="https://github.com/SmartCityFlensburg" ariaLabel="Besuche uns auf GitHub" isExternalLink> | ||
<img | ||
src="/assets/svg/socials/github.svg" | ||
|
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
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