Skip to content

Registrations Gateway Konhub #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: mithun-patch-card-title
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import About2 from "./components/About2";
import Events from "./components/Events";
import Intro from "./components/Intro";
import Sponsor from "./components/sponsor"

function App() {
const [showIntro, setShowIntro] = useState(true);

Expand Down
2 changes: 1 addition & 1 deletion src/components/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function Example() {
</p>
<div className="mt-10">
<a
href="https://forms.gle/qv8uKMkvRiefqZP17" target="_blank"
href="https://konfhub.com/checkout/t-24" target="_blank"
className="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white"
>
Register now!
Expand Down
3 changes: 2 additions & 1 deletion src/components/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const CardList = () => {
Competitions
</h1>
<p className="my-10 text-lg lg:px-20 px-10">
TechPulse'24 is not just about learning and networking; it's also about putting your skills to the test in our exhilarating competitions. Whether you thrive on solving complex problems, crave the adrenaline rush of coding challenges, or enjoy showcasing your tech knowledge, we have something for everyone. Here's a glimpse of the competitions awaiting you
TechPulse'24 is not just about learning and networking; it's also about putting your skills to the test in our exhilarating competitions. Whether you thrive on solving complex problems, crave the adrenaline rush of coding challenges, or enjoy showcasing your tech knowledge, we have something for everyone. Here's a glimpse of the competitions awaiting you. <br/>
<p className="text-lg text-center font-bold"> All participants are given certificates</p>
<p className="pt-5 text-center font-['Madimi_One'] font-bold text-3xl">
Participate in all four competitions and unlock a 50% discount on the total cost!<br />
Showcase your skills across multiple events at an unbeatable price paying Rs.100.
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default function Example() {
</p>
<div className="mt-10">
<a
href="https://forms.gle/qv8uKMkvRiefqZP17" target="_blank"
href="https://konfhub.com/checkout/t-24" target="_blank"
className="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Register now!
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function Dialog({ eventid, title, rules,close }) {
close
</button>
<a
href="https://forms.gle/qv8uKMkvRiefqZP17" target="_blank"
href="https://konfhub.com/checkout/t-24" target="_blank"
className="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Register now!
Expand Down
19 changes: 19 additions & 0 deletions src/components/register.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from 'react';

function MyComponent() {
return (
<div>
{/* Your other React components */}
<iframe
src="https://konfhub.com/widget/t-24?ticketId=14578"
id="konfhub-widget"
title="Register for TechPulse 24"
width="100%"
height="500"
style={{ border: "none" }} // Optionally, you can add styling here
></iframe>
</div>
);
}

export default MyComponent;