diff options
author | Manurbhav Arya | 2024-06-24 16:10:10 +0530 |
---|---|---|
committer | Manurbhav Arya | 2024-06-24 16:10:10 +0530 |
commit | caa72207d70ad8e965ef0b167b98f8b580820132 (patch) | |
tree | 3fbfd67c85cc531db6744770dde2e8a4975e004f /src/components/ResultsBody.astro | |
parent | 0451fd96a5aa22410560a8e6ab77242d3ee0654a (diff) | |
download | IotJS-Astro-main.tar.gz IotJS-Astro-main.tar.bz2 IotJS-Astro-main.zip |
Diffstat (limited to 'src/components/ResultsBody.astro')
-rw-r--r-- | src/components/ResultsBody.astro | 5 |
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> |