computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
--- |
|
import { DateTime } from 'luxon'; |
|
|
|
const formattedDate = DateTime.fromISO('2024-09-13').toFormat('dd LLL, yyyy'); |
|
--- |
|
|
|
<div class='relative mb-6'> |
|
<span |
|
class='absolute -left-6 top-2 h-2 w-2 shrink-0 rounded-full bg-gray-300' |
|
></span> |
|
|
|
<div |
|
class='mb-3 flex flex-col items-start gap-0.5 sm:flex-row sm:items-center sm:gap-2' |
|
> |
|
<span class='shrink-0 text-xs tracking-wide text-gray-400'> |
|
{formattedDate} |
|
</span> |
|
<span class='truncate text-balance text-base font-medium'> |
|
Changelog page is launched |
|
</span> |
|
</div> |
|
|
|
<div |
|
class='flex flex-col items-center justify-center gap-2 sm:gap-2 rounded-xl border bg-white px-8 py-12 text-center' |
|
> |
|
<img src='/images/gifs/rocket.gif' class='w-[70px] mb-4' /> |
|
<h2 class='text-balance text-xl font-medium'>Changelog page is launched</h2> |
|
<p class='font-normal text-balance text-gray-400 text-sm sm:text-base'> |
|
We will be sharing a selected list of updates, improvements, and fixes made to |
|
the website. Stay tuned! |
|
</p> |
|
</div> |
|
</div>
|
|
|