diff options
author | akshay | 2024-09-10 13:21:49 +0530 |
---|---|---|
committer | GitHub | 2024-09-10 13:21:49 +0530 |
commit | 9c59820783a12304126ec27afd61554cad4c9018 (patch) | |
tree | 3b16bec51eaae1fa22f49d5f0d37cda7cab16046 | |
parent | de6b265e7fe1f49092e434e28903677fd96a590f (diff) | |
parent | 70a06961db79c1b93deee46a33659a1e494d881a (diff) | |
download | animate2024-9c59820783a12304126ec27afd61554cad4c9018.tar.gz animate2024-9c59820783a12304126ec27afd61554cad4c9018.tar.bz2 animate2024-9c59820783a12304126ec27afd61554cad4c9018.zip |
new page
-rw-r--r-- | src/layouts/nav-links.json | 2 | ||||
-rw-r--r-- | src/pages/awards.astro | 44 |
2 files changed, 45 insertions, 1 deletions
diff --git a/src/layouts/nav-links.json b/src/layouts/nav-links.json index f488466..fbe4089 100644 --- a/src/layouts/nav-links.json +++ b/src/layouts/nav-links.json @@ -3,9 +3,9 @@ { "label": "About", "href": "/about" }, { "label": "Theme", "href": "/theme" }, {"label": "Results", "href": "/results"}, + {"label": "Awards", "href": "/awards"}, { "label": "Resources", "href": "/resources" }, { "label": "Rules", "href": "/rules" }, - { "label": "Webinar", "href": "/webinar" }, { "label": "Partners", "href": "/partners" }, { "label": "Contact", "href": "/contact" }, {"label": "FAQs", "href": "/contact#faq"} diff --git a/src/pages/awards.astro b/src/pages/awards.astro new file mode 100644 index 0000000..f8dccde --- /dev/null +++ b/src/pages/awards.astro @@ -0,0 +1,44 @@ +--- +import Main from '../layouts/main.astro'; + +--- + +<Main title="Awards"> + <div class="mt-5 pt-5"> + + <div> <h1 class="justify-end text-4xl my-3">Awards and Certificates</h1></div> + <div><h2 class="text-pretty md:text-xl text-sm playfair-display-normal">The teams shall get the following prize money:</h2></div> + <div class="text-pretty md:text-xl text-sm playfair-display-normal"> + <div> + <ol class="list-decimal pl-5 mb-6"> + <li>First Prize: <span class="text-green-600">Rs. 10,000</span></li> + <li>Second Prize: <span class="text-green-600">Rs. 5,000</span></li> + <li>Third Prize: <span class="text-green-600">Rs. 3,000</span></li> + </ol> + </div> + <div> + <div><h2 class="text-xl">Under Special Categories, the team shall get:</h2></div> + <ol class="list-decimal pl-5 mb-6"> + <li>Best School Submission: <span class="text-green-600">Rs. 2,000</span></li> + <li>Regional Language: <span class="text-green-600">Rs. 2,000</span></li> + <li>Environmental Relevance: <span class="text-green-600">Rs. 2,000</span></li> + <li>Social Relevance: <span class="text-green-600">Rs. 2,000</span></li> + <li>Innovation: <span class="text-green-600">Rs. 2,000</span></li> + </ol> + <div>Consolation Prize: <span class="text-green-600">Rs. 1,000</span></div> + <div> </div> + <div> + <div>The prize money will be credited online to each Team Lead's account.</div> + <div>All the team members under the <strong>Winners and Special categories</strong> will be awarded with a <strong>Certificate of Achievement </strong>during the closing ceremony.</div> + </div> + <div> </div> + + <div> </div> + <div>Good submission: Certificates of Appreciation.</div> +</div> +</div> +<div> </div> +<div class="text-pretty md:text-xl text-sm playfair-display-normal">All team members under the <strong>Consolation and Good Submission categories </strong>will be awarded with a <strong>Certificate of Appreciation</strong> during the closing ceremony.</div> + +</div> +</Main>
\ No newline at end of file |