Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/components/Rules.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const rules = [
"The decision of the review committee and organizers in declaring the results will be final. No queries in this regard will be entertained.",
"The same person can not participate in more than one team.",
"If a person is found participating in more than one team, both teams will be disqualified from the Hackathon.",
"Use ONLY Synfig Studio for creating animations. Create the supporting graphics, audio, etc. using only open source software. You are not allowed to use any proprietary software in your animation in any aspect. If found, you or your team will be disqualified.",
// "Use ONLY Synfig Studio for creating animations. Create the supporting graphics, audio, etc. using only open source software. You are not allowed to use any proprietary software in your animation in any aspect. If found, you or your team will be disqualified.",
"The accepted submissions shall be released and published under open source license in the public domain. The copyright should be transferred to the FOSSEE project.",
"The team lead will be only one point of contact with the organizers.",
"Any participant found to be indulging in any form of malpractice will be immediately disqualified."
Expand All @@ -16,7 +16,7 @@ const rules = [
<div class="max-w-6xl mx-auto px-6">
<SectionTitle id="rulesTitle" title="Rules and Regulations" />
<div class="rounded-2xl border border-slate-200 bg-white p-8 shadow-sm">
<ul class="list-disc list-outside space-y-3 text-sm md:text-md leading-7 text-slate-700 marker:text-blue-600">
<ul class="list-disc list-outside space-y-3 text-sm md:text-md text-black marker:text-blue-600">
{rules.map((rule) => (
<li>
<span>{rule}</span>
Expand Down