Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/components/ContactUs.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
import SectionTitle from "./SectionTitle.astro";
---

<section id="contact" class="py-12">
<div class="max-w-6xl mx-auto px-6">
<SectionTitle title="Contact Us" />
<div class="rounded-2xl border border-slate-200 bg-white p-6 shadow-sm text-center">
<p class="text-sm md:text-md text-black">
Please write to us in case of any queries regarding the Hackathon at:

</p>
<p class="mt-2 text-sm md:text-md text-black">
<span class="font-semibold text-black"> Email:</span> <a
href="mailto:contact-oshw@fossee.in"
target="_blank"
rel="noopener noreferrer"
class="text-sky-600 hover:text-sky-700 underline"
>
contact-oshw@fossee.in
</a>
</p>
</div>
</div>
</section>
3 changes: 3 additions & 0 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ const navItems = [
{ href: "/", label: "Home" },
{ href: "/#about", label: "About" },
{ href: "/theme", label: "Themes" },
{ href: "/#faq", label: "FAQ" },
{ href: "/#contact", label: "Contact Us" },

// { href: "/temp", label: "Temp" },
];
---
Expand Down
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import WhatYouWillDo from "../components/WhatYouWillDo.astro";
import Register from "../components/Register.astro";
import Rules from "../components/Rules.astro";
import Faq from "../components/Faq.astro";
import ContactUs from "../components/ContactUs.astro";

---

Expand Down Expand Up @@ -93,6 +94,7 @@ Maximum 5 participants per team</span>
</section>
<Rules />
<Faq />
<ContactUs />


</main>
Expand Down