Skip to content

Commit

Permalink
fix: add correct mail to contact section
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorien Grönwald committed Jun 14, 2024
1 parent 1d9791b commit 83afe25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/tsx/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Contact from "./components/sections/Contact";
import Faq from "./components/sections/Faq";
import Introduction from "./components/sections/Introduction";
import Process from "./components/sections/Process";
Expand All @@ -10,7 +11,7 @@ function App() {
<Process />
<Stakeholder />
<Faq />
{/* <Contact /> */}
<Contact />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/tsx/components/sections/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Contact() {
Unser Team wird sich schnellstmöglich bei dir melden.
</p>

<Button href="mailto:" ariaLabel="Kontaktiere uns gern per Mail" isDark>
<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"/>
Expand Down
4 changes: 2 additions & 2 deletions src/tsx/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 83afe25

Please sign in to comment.