summaryrefslogtreecommitdiff
path: root/src/components/ResultsBody.astro
diff options
context:
space:
mode:
authorManurbhav Arya2024-06-24 16:10:10 +0530
committerManurbhav Arya2024-06-24 16:10:10 +0530
commitcaa72207d70ad8e965ef0b167b98f8b580820132 (patch)
tree3fbfd67c85cc531db6744770dde2e8a4975e004f /src/components/ResultsBody.astro
parent0451fd96a5aa22410560a8e6ab77242d3ee0654a (diff)
downloadIotJS-Astro-main.tar.gz
IotJS-Astro-main.tar.bz2
IotJS-Astro-main.zip
Added intermediate route for results pageHEADmain
Diffstat (limited to 'src/components/ResultsBody.astro')
-rw-r--r--src/components/ResultsBody.astro5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/ResultsBody.astro b/src/components/ResultsBody.astro
index b08b017..03914db 100644
--- a/src/components/ResultsBody.astro
+++ b/src/components/ResultsBody.astro
@@ -1,4 +1,6 @@
---
+import CountdownTimer from "./CountdownTimer.astro";
+
// Can be used in other pages to check if the user is logged in or not
@@ -15,8 +17,9 @@ else{
---
-<div class="resultsContainer">
+<div class="resultsContainer ">
<div class="pre min-h-screen flex flex-col items-center justify-center">
+ <CountdownTimer />
<h1 class="mb-10">Results will be announced soon</h1>
<a href = "/login" type="submit" class="w-40 bg-purple-600 no-underline text-center text-white py-2 rounded-lg hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-600" id="Adminbtn">Admin Login<a/>
</div>